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§
source§impl Debug for TemperatureProbeResolution
impl Debug for TemperatureProbeResolution
source§impl 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§
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