pub enum HeaterLevel {
Off,
On25Percent,
On50Percent,
On100Percent,
}
Expand description
Options for the on-device heater. The datasheet claims this may be useful to drive off condensation.
Variants§
Off
heater off (post-reset default)
On25Percent
heater on at 25% power
On50Percent
heater on at 50% power
On100Percent
heater on at 100% power
Trait Implementations§
Source§impl Clone for HeaterLevel
impl Clone for HeaterLevel
Source§fn clone(&self) -> HeaterLevel
fn clone(&self) -> HeaterLevel
Returns a duplicate 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 moreSource§impl Debug for HeaterLevel
impl Debug for HeaterLevel
Source§impl PartialEq for HeaterLevel
impl PartialEq for HeaterLevel
impl Copy for HeaterLevel
impl Eq for HeaterLevel
impl StructuralPartialEq for HeaterLevel
Auto Trait Implementations§
impl Freeze for HeaterLevel
impl RefUnwindSafe for HeaterLevel
impl Send for HeaterLevel
impl Sync for HeaterLevel
impl Unpin for HeaterLevel
impl UnwindSafe for HeaterLevel
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