pub trait Scale:
Sealed
+ Copy
+ Clone
+ Debug
+ 'static {
const NAME: &'static str;
}Expand description
Marker trait for a scientifically distinct time scale.
Sealed: implementations live in this crate only — downstream crates cannot add new scales.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".