[][src]Trait libmedium::sensors::WriteableMin

pub trait WriteableMin: WriteableSensor {
    pub fn write_min(&self, min: Self::Value) -> Result<(), Error> { ... }
}

Trait implemented by all writeable sensors that can have a min subfunction.

Provided methods

pub fn write_min(&self, min: Self::Value) -> Result<(), Error>[src]

Writes this sensor's min value. Returns an error, if the sensor doesn't support the feature.

Loading content...

Implementors

impl<S: WriteableSensor + Min> WriteableMin for S[src]

Loading content...