Struct follow_heating::brain::modes::turning_on::TurningOnMode
source · pub struct TurningOnMode {
started: Instant,
}
Fields§
§started: Instant
Implementations§
Trait Implementations§
source§impl Debug for TurningOnMode
impl Debug for TurningOnMode
source§impl Mode for TurningOnMode
impl Mode for TurningOnMode
fn enter( &mut self, _config: &PythonBrainConfig, _runtime: &Runtime, io_bundle: &mut IOBundle ) -> Result<(), BrainFailure>
fn update( &mut self, rt: &Runtime, config: &PythonBrainConfig, info_cache: &mut InfoCache, io_bundle: &mut IOBundle, time: &impl TimeProvider ) -> Result<Intention, BrainFailure>
source§impl PartialEq for TurningOnMode
impl PartialEq for TurningOnMode
source§fn eq(&self, other: &TurningOnMode) -> bool
fn eq(&self, other: &TurningOnMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TurningOnMode
Auto Trait Implementations§
impl RefUnwindSafe for TurningOnMode
impl Send for TurningOnMode
impl Sync for TurningOnMode
impl Unpin for TurningOnMode
impl UnwindSafe for TurningOnMode
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more