Trait ClockTo

Source
pub trait ClockTo {
    // Provided method
    fn clock_to(&mut self, _cycle: u64) -> u64 { ... }
}
Expand description

Trait for types that can clock to a target cycle.

Provided Methods§

Source

fn clock_to(&mut self, _cycle: u64) -> u64

Clock component to the given master cycle, returning the number of cycles clocked.

Implementors§