pub trait Scale: Copy + Debug {
const NAME: &'static str;
}Expand description
A unit an offset can be counted in.
Sealed by construction: the three implementors below are the only ones, and the trait’s only members are constants, so a consumer cannot invent a fourth scale that conversion does not handle.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".