Struct follow_heating::brain::modes::heating_mode::EntryPreferences
source · pub struct EntryPreferences {
allow_heat_pump_on: bool,
allow_circulation_pump_on: bool,
}
Expand description
Normally we opt for every state to clean up after themselves immediately, but if these preferences allow passing the burden of making sure these things are in the correct state, then the previous state is allowed to pass a them without shutting down these things.
Fields§
§allow_heat_pump_on: bool
§allow_circulation_pump_on: bool
Implementations§
Trait Implementations§
source§impl Clone for EntryPreferences
impl Clone for EntryPreferences
source§fn clone(&self) -> EntryPreferences
fn clone(&self) -> EntryPreferences
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for EntryPreferences
impl Send for EntryPreferences
impl Sync for EntryPreferences
impl Unpin for EntryPreferences
impl UnwindSafe for EntryPreferences
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