pub struct TemperatureProbeLocationAndStatus {
pub raw: u8,
}
Expand description
§Temperature Probe Location and Status
Fields§
§raw: u8
Raw value
Implementations§
Source§impl TemperatureProbeLocationAndStatus
impl TemperatureProbeLocationAndStatus
Sourcepub fn location(&self) -> TemperatureProbeLocation
pub fn location(&self) -> TemperatureProbeLocation
Temperature Probe Location
Sourcepub fn status(&self) -> TemperatureProbeStatus
pub fn status(&self) -> TemperatureProbeStatus
Temperature Probe Status
Trait Implementations§
Source§impl From<u8> for TemperatureProbeLocationAndStatus
impl From<u8> for TemperatureProbeLocationAndStatus
Source§impl PartialEq for TemperatureProbeLocationAndStatus
impl PartialEq for TemperatureProbeLocationAndStatus
Source§fn eq(&self, other: &TemperatureProbeLocationAndStatus) -> bool
fn eq(&self, other: &TemperatureProbeLocationAndStatus) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for TemperatureProbeLocationAndStatus
impl StructuralPartialEq for TemperatureProbeLocationAndStatus
Auto Trait Implementations§
impl Freeze for TemperatureProbeLocationAndStatus
impl RefUnwindSafe for TemperatureProbeLocationAndStatus
impl Send for TemperatureProbeLocationAndStatus
impl Sync for TemperatureProbeLocationAndStatus
impl Unpin for TemperatureProbeLocationAndStatus
impl UnwindSafe for TemperatureProbeLocationAndStatus
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