pub trait TimeFormat:
Sealed
+ Copy
+ Clone
+ Debug
+ 'static {
type Unit: Unit;
const NAME: &'static str;
}Expand description
Marker trait for an external time encoding such as JD or Unix time.
Required Associated Constants§
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".