pub enum VoltageProbeStatus {
Other,
Unknown,
OK,
NonCritical,
Critical,
NonRecoverable,
None,
}
Expand description
§Voltage Probe Status
Variants§
Other
Other
Unknown
Unknown
OK
OK
NonCritical
Non-critical
Critical
Critical
NonRecoverable
Non-recoverable
None
A value unknown to this standard, check the raw value
Trait Implementations§
Source§impl Debug for VoltageProbeStatus
impl Debug for VoltageProbeStatus
Source§impl From<u8> for VoltageProbeStatus
impl From<u8> for VoltageProbeStatus
Source§impl PartialEq for VoltageProbeStatus
impl PartialEq for VoltageProbeStatus
Source§impl Serialize for VoltageProbeStatus
impl Serialize for VoltageProbeStatus
impl Eq for VoltageProbeStatus
impl StructuralPartialEq for VoltageProbeStatus
Auto Trait Implementations§
impl Freeze for VoltageProbeStatus
impl RefUnwindSafe for VoltageProbeStatus
impl Send for VoltageProbeStatus
impl Sync for VoltageProbeStatus
impl Unpin for VoltageProbeStatus
impl UnwindSafe for VoltageProbeStatus
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