pub enum VoltageProbeAccuracy {
OneOneHundredthPercent(u16),
Unknown,
}
Expand description
§Voltage Probe Accuracy
Variants§
OneOneHundredthPercent(u16)
Accuracy for the probe’s reading in 1/100th of a percent
Unknown
Accuracy is unknown
Trait Implementations§
Source§impl Debug for VoltageProbeAccuracy
impl Debug for VoltageProbeAccuracy
Source§impl From<u16> for VoltageProbeAccuracy
impl From<u16> for VoltageProbeAccuracy
Auto Trait Implementations§
impl Freeze for VoltageProbeAccuracy
impl RefUnwindSafe for VoltageProbeAccuracy
impl Send for VoltageProbeAccuracy
impl Sync for VoltageProbeAccuracy
impl Unpin for VoltageProbeAccuracy
impl UnwindSafe for VoltageProbeAccuracy
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