BoxedClockClone

Trait BoxedClockClone 

Source
pub trait BoxedClockClone {
    // Required method
    fn clone_box(&self) -> ClockType;
}
Expand description

BoxedClockClone represents a trait get an instance of ClockType.

Required Methods§

Implementors§

Source§

impl<T> BoxedClockClone for T
where T: 'static + Clock + Clone,