pub enum Hysteresis {
None,
Hyst10M,
Hyst20M,
Hyst30M,
Hyst40M,
Hyst50M,
Hyst60M,
Hyst70M,
}Expand description
Hysteresis level.
Variants§
None
No hysteresis.
Hyst10M
10mV hysteresis.
Hyst20M
20mV hysteresis.
Hyst30M
30mV hysteresis.
Hyst40M
40mV hysteresis.
Hyst50M
50mV hysteresis.
Hyst60M
60mV hysteresis.
Hyst70M
70mV hysteresis.
Trait Implementations§
Source§impl Clone for Hysteresis
impl Clone for Hysteresis
Source§fn clone(&self) -> Hysteresis
fn clone(&self) -> Hysteresis
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Hysteresis
impl Debug for Hysteresis
Source§impl Format for Hysteresis
impl Format for Hysteresis
Source§impl PartialEq for Hysteresis
impl PartialEq for Hysteresis
impl Copy for Hysteresis
impl Eq for Hysteresis
impl StructuralPartialEq for Hysteresis
Auto Trait Implementations§
impl Freeze for Hysteresis
impl RefUnwindSafe for Hysteresis
impl Send for Hysteresis
impl Sync for Hysteresis
impl Unpin for Hysteresis
impl UnwindSafe for Hysteresis
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