pub trait DurationFrom {
    fn from_minute(minute: u64) -> Self;
    fn from_hour(hour: u64) -> Self;
    fn from_day(day: u64) -> Self;
}

Required Methods§

Implementations on Foreign Types§

Implementors§