pub struct CurrentProbeLocationAndStatus {
pub raw: u8,
pub status: CurrentProbeStatus,
pub location: CurrentProbeLocation,
}Expand description
§Electrical Current Probe Location and Status
Fields§
§raw: u8Raw value
raw is most useful when value is None. This is most likely to occur when the standard was updated but this library code has not been updated to match the current standard.
status: CurrentProbeStatus§location: CurrentProbeLocationTrait Implementations§
impl Eq for CurrentProbeLocationAndStatus
Source§impl From<u8> for CurrentProbeLocationAndStatus
impl From<u8> for CurrentProbeLocationAndStatus
impl StructuralPartialEq for CurrentProbeLocationAndStatus
Auto Trait Implementations§
impl Freeze for CurrentProbeLocationAndStatus
impl RefUnwindSafe for CurrentProbeLocationAndStatus
impl Send for CurrentProbeLocationAndStatus
impl Sync for CurrentProbeLocationAndStatus
impl Unpin for CurrentProbeLocationAndStatus
impl UnsafeUnpin for CurrentProbeLocationAndStatus
impl UnwindSafe for CurrentProbeLocationAndStatus
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