pub trait ClockTo { // Provided method fn clock_to(&mut self, _cycle: u64) -> u64 { ... } }
Trait for types that can clock to a target cycle.
Clock component to the given master cycle, returning the number of cycles clocked.