pub enum TemperatureProbeResolution {
OneOneThousandthDegreesC(u16),
Unknown,
}
Expand description
Variants
OneOneThousandthDegreesC(u16)
Resolution for the probe’s reading in 1/1000 degrees C
Unknown
Resolution is unknown
Trait Implementations
sourceimpl Debug for TemperatureProbeResolution
impl Debug for TemperatureProbeResolution
sourceimpl From<u16> for TemperatureProbeResolution
impl From<u16> for TemperatureProbeResolution
Auto Trait Implementations
impl RefUnwindSafe for TemperatureProbeResolution
impl Send for TemperatureProbeResolution
impl Sync for TemperatureProbeResolution
impl Unpin for TemperatureProbeResolution
impl UnwindSafe for TemperatureProbeResolution
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more