summaryrefslogtreecommitdiff
path: root/schist_core/schist_traits/src/timeable.rs
blob: f6f924474906e92b227a954000a49bd3bd07be0a (plain)
1
2
3
4
5
pub trait Timeable {
    fn hour(&self) -> u32;
    fn minute(&self) -> u32;
    fn second(&self) -> u32;
}