pub trait TimeScale {
const NAME: &'static str;
const ABBREVIATION: &'static str;
}Expand description
A TimeScale identifies the relativistic time scale in which some TimePoint is expressed.
Required Associated Constants§
Sourceconst ABBREVIATION: &'static str
const ABBREVIATION: &'static str
The abbreviated string used to represent this time scale.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.