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