power_abstractions + request id schedule implementation #32
@ -47,10 +47,13 @@ pub trait PowerSwitcher {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Retrieve the switch state
|
/// Retrieve the switch state
|
||||||
fn get_switch_state(&mut self, switch_id: SwitchId) -> SwitchState;
|
fn get_switch_state(&mut self, switch_id: SwitchId) -> Result<SwitchState, Self::Error>;
|
||||||
|
|
||||||
fn get_is_switch_on(&mut self, switch_id: SwitchId) -> bool {
|
fn get_is_switch_on(&mut self, switch_id: SwitchId) -> Result<bool, ()> {
|
||||||
self.get_switch_state(switch_id) == SwitchState::On
|
match self.get_switch_state(switch_id) {
|
||||||
|
Ok(switch_state) => { Ok(switch_state == SwitchState::On) }
|
||||||
|
Err(_) => { Err(()) }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The maximum delay it will take to change a switch.
|
/// The maximum delay it will take to change a switch.
|
||||||
|
Loading…
Reference in New Issue
Block a user