[][src]Trait libmedium::sensors::Lowest

pub trait Lowest<P: Raw>: SensorBase {
    fn read_lowest(&self) -> Result<P, Error> { ... }
}

Trait implemented by all sensors that can have a lowest subfunction.

Provided methods

fn read_lowest(&self) -> Result<P, Error>

Reads this sensor's historically lowest input. Returns an error, if this sensor doesn't support the feature.

Loading content...

Implementors

impl<S: CurrSensor> Lowest<Current> for S[src]

impl<S: PowerSensor> Lowest<Power> for S[src]

impl<S: VoltSensor> Lowest<Voltage> for S[src]

Loading content...