pub trait TimeValLike: Sized {
Show 13 methods fn seconds(seconds: i64) -> Self; fn milliseconds(milliseconds: i64) -> Self; fn microseconds(microseconds: i64) -> Self; fn nanoseconds(nanoseconds: i64) -> Self; fn num_seconds(&self) -> i64; fn num_milliseconds(&self) -> i64; fn num_microseconds(&self) -> i64; fn num_nanoseconds(&self) -> i64; fn zero() -> Self { ... } fn hours(hours: i64) -> Self { ... } fn minutes(minutes: i64) -> Self { ... } fn num_hours(&self) -> i64 { ... } fn num_minutes(&self) -> i64 { ... }
}

Required Methods

Provided Methods

Implementors