Enum ukhasnet_parser::DataField [] [src]

pub enum DataField<'a> {
    Temperature(Vec<f32>),
    Voltage(Vec<f32>),
    Humidity(Vec<f32>),
    Pressure(Vec<f32>),
    Sun(Vec<f32>),
    Rssi(Vec<f32>),
    Count(Vec<f32>),
    Custom(Vec<f32>),
    Location(Location),
    WindSpeed(WindSpeed),
    Zombie(u8),
    Comment(&'a str),
}

Variants

Temperature(Vec<f32>)Voltage(Vec<f32>)Humidity(Vec<f32>)Pressure(Vec<f32>)Sun(Vec<f32>)Rssi(Vec<f32>)Count(Vec<f32>)Custom(Vec<f32>)Location(Location)WindSpeed(WindSpeed)Zombie(u8)Comment(&'a str)

Trait Implementations

impl<'a> PartialEq for DataField<'a>
[src]

fn eq(&self, __arg_0: &DataField<'a>) -> bool

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

fn ne(&self, __arg_0: &DataField<'a>) -> bool

This method tests for !=.

impl<'a> Debug for DataField<'a>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.