Trait kernel::platform::chip::ClockInterface
source · pub trait ClockInterface {
// Required methods
fn is_enabled(&self) -> bool;
fn enable(&self);
fn disable(&self);
}
Expand description
Generic operations that clock-like things are expected to support.