pub enum VoltageProbeResolution {
TenthsOfMillivolts(u16),
Unknown,
}
Expand description
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 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