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.

Required Methods§

source

fn is_enabled(&self) -> bool

source

fn enable(&self)

source

fn disable(&self)

Implementors§