pub enum VoltageProbeResolution {
TenthsOfMillivolts(u16),
Unknown,
}
Expand description
§Voltage Probe Resolution
Variants§
TenthsOfMillivolts(u16)
Resolution for the probe’s reading in tenths of millivolts
Unknown
Resolution is unknown
Trait Implementations§
Source§impl Debug for VoltageProbeResolution
impl Debug for VoltageProbeResolution
Source§impl From<u16> for VoltageProbeResolution
impl From<u16> for VoltageProbeResolution
Auto Trait Implementations§
impl Freeze for VoltageProbeResolution
impl RefUnwindSafe for VoltageProbeResolution
impl Send for VoltageProbeResolution
impl Sync for VoltageProbeResolution
impl Unpin for VoltageProbeResolution
impl UnwindSafe for VoltageProbeResolution
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