summaryrefslogtreecommitdiff
path: root/schist_core/schist_traits/src/dateable.rs
blob: 05f2d749beceac4a4bb1053437073c102054b9cb (plain)
1
2
3
4
5
pub trait Dateable {
    fn year(&self) -> i32;
    fn month(&self) -> u32;
    fn day(&self) -> u32;
}