#[repr(u8)]pub enum Flenselect {
Off = 0,
Maj3 = 1,
Maj5 = 2,
}
Expand description
Filter Length
Value on reset: 0
Variants§
Off = 0
0: No filtering
Maj3 = 1
1: 3-bit majority function (2 of 3)
Maj5 = 2
2: 5-bit majority function (3 of 5)
Trait Implementations§
Source§impl Clone for Flenselect
impl Clone for Flenselect
Source§fn clone(&self) -> Flenselect
fn clone(&self) -> Flenselect
Returns a copy 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 Flenselect
impl Debug for Flenselect
Source§impl From<Flenselect> for u8
impl From<Flenselect> for u8
Source§fn from(variant: Flenselect) -> Self
fn from(variant: Flenselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Flenselect
impl PartialEq for Flenselect
impl Copy for Flenselect
impl Eq for Flenselect
impl IsEnum for Flenselect
impl StructuralPartialEq for Flenselect
Auto Trait Implementations§
impl Freeze for Flenselect
impl RefUnwindSafe for Flenselect
impl Send for Flenselect
impl Sync for Flenselect
impl Unpin for Flenselect
impl UnwindSafe for Flenselect
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