#[repr(u8)]pub enum HistoryParam {
Temperature = 1,
Humidity = 2,
Pressure = 3,
Co2 = 4,
Humidity2 = 5,
Radon = 10,
}Expand description
Parameter types for history requests.
Variants§
Temperature = 1
Humidity = 2
Pressure = 3
Co2 = 4
Humidity2 = 5
Humidity for Aranet2/Radon (different encoding).
Radon = 10
Radon concentration (Bq/m³) for AranetRn+.
Trait Implementations§
Source§impl Clone for HistoryParam
impl Clone for HistoryParam
Source§fn clone(&self) -> HistoryParam
fn clone(&self) -> HistoryParam
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 HistoryParam
impl Debug for HistoryParam
Source§impl PartialEq for HistoryParam
impl PartialEq for HistoryParam
impl Copy for HistoryParam
impl Eq for HistoryParam
impl StructuralPartialEq for HistoryParam
Auto Trait Implementations§
impl Freeze for HistoryParam
impl RefUnwindSafe for HistoryParam
impl Send for HistoryParam
impl Sync for HistoryParam
impl Unpin for HistoryParam
impl UnwindSafe for HistoryParam
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