Trait ClockInterface
kernel
pub trait ClockInterface { pub fn is_enabled(&self) -> bool; pub fn enable(&self); pub fn disable(&self); }
Generic operations that clock-like things are expected to support.
pub fn is_enabled(&self) -> bool
pub fn enable(&self)
pub fn disable(&self)
impl ClockInterface for NoClockControl