pub trait BoxedClockClone {
// Required method
fn clone_box(&self) -> ClockType;
}Expand description
BoxedClockClone represents a trait get an instance of ClockType.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".