pub enum AutoReadTarget {
LastTempAndRelHumid,
MinTemp,
MaxTemp,
MinRelHumid,
MaxRelHumid,
}
Expand description
Options for what to read from the device when in auto mode.
Variants§
LastTempAndRelHumid
most recently sampled temperature and relative humidity
MinTemp
minimum temperature since auto mode was started
MaxTemp
maximum temperature since auto mode was started
MinRelHumid
minimum relative humidity since auto mode was started
MaxRelHumid
maximum relative humidity since auto mode was started
Trait Implementations§
Source§impl Clone for AutoReadTarget
impl Clone for AutoReadTarget
Source§fn clone(&self) -> AutoReadTarget
fn clone(&self) -> AutoReadTarget
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 AutoReadTarget
impl Debug for AutoReadTarget
Source§impl PartialEq for AutoReadTarget
impl PartialEq for AutoReadTarget
impl Copy for AutoReadTarget
impl Eq for AutoReadTarget
impl StructuralPartialEq for AutoReadTarget
Auto Trait Implementations§
impl Freeze for AutoReadTarget
impl RefUnwindSafe for AutoReadTarget
impl Send for AutoReadTarget
impl Sync for AutoReadTarget
impl Unpin for AutoReadTarget
impl UnwindSafe for AutoReadTarget
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