pub trait TimeExt: Copy {
// Required methods
fn s(self) -> Time;
fn ms(self) -> Time;
}Expand description
Method-style time constructors.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".