Enum Intdiv
#[repr(u8)]pub enum Intdiv {
Div128 = 0,
Div32 = 1,
Div4 = 2,
None = 3,
}Expand description
Integrator output division.
Variants§
Div128 = 0
Integrator output divided by 128.
Div32 = 1
Integrator output divided by 32.
Div4 = 2
Integrator output divided by 4.
None = 3
Integrator output not divided.
Implementations§
Trait Implementations§
impl Copy for Intdiv
impl Eq for Intdiv
§impl Ord for Intdiv
impl Ord for Intdiv
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialOrd for Intdiv
impl PartialOrd for Intdiv
impl StructuralPartialEq for Intdiv
Auto Trait Implementations§
impl Freeze for Intdiv
impl RefUnwindSafe for Intdiv
impl Send for Intdiv
impl Sync for Intdiv
impl Unpin for Intdiv
impl UnsafeUnpin for Intdiv
impl UnwindSafe for Intdiv
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