Enum luftpost::measurement::Value [] [src]

pub enum Value {
    SDS_P1(f32),
    SDS_P2(f32),
    TEMPERATURE(f32),
    HUMIDITY(f32),
    SAMPLES(f32),
    MIN_MICRO(f32),
    MAX_MICRO(f32),
    SIGNAL(f32),
    UNKNOWN(String),
}

Variants

Trait Implementations

impl Debug for Value
[src]

Formats the value using the given formatter.

impl PartialEq for Value
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for Value
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> From<(&'a str, f32)> for Value
[src]

Performs the conversion.

impl Display for Value
[src]

Formats the value using the given formatter. Read more