pub trait TimeScale:
Sealed
+ Copy
+ Clone
+ Debug
+ Eq
+ Ord
+ Hash
+ Default
+ 'static {
const NAME: &'static str;
}Expand description
Time scale of an Instant.
Sealed: only the scales below exist.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".