pub trait WiserPowerControl {
    // Required methods
    fn try_set_wiser_power(&mut self, on: bool) -> Result<(), BrainFailure>;
    fn try_get_wiser_power(&mut self) -> Result<bool, BrainFailure>;
}

Required Methods§

Implementors§