#[repr(u8)]pub enum FilterMode {
BYPASS = 0,
FILTER1CLK = 1,
FILTER2CLK = 2,
FILTER3CLK = 3,
}Variants§
BYPASS = 0
Bypass mode.
FILTER1CLK = 1
Filter 1 clock period.
FILTER2CLK = 2
Filter 2 clock period.
FILTER3CLK = 3
Filter 3 clock period.
Implementations§
Source§impl FilterMode
impl FilterMode
Trait Implementations§
Source§impl Clone for FilterMode
impl Clone for FilterMode
Source§fn clone(&self) -> FilterMode
fn clone(&self) -> FilterMode
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 FilterMode
impl Debug for FilterMode
Source§impl From<FilterMode> for u8
impl From<FilterMode> for u8
Source§fn from(val: FilterMode) -> u8
fn from(val: FilterMode) -> u8
Converts to this type from the input type.
Source§impl From<u8> for FilterMode
impl From<u8> for FilterMode
Source§fn from(val: u8) -> FilterMode
fn from(val: u8) -> FilterMode
Converts to this type from the input type.
Source§impl Ord for FilterMode
impl Ord for FilterMode
Source§fn cmp(&self, other: &FilterMode) -> Ordering
fn cmp(&self, other: &FilterMode) -> Ordering
1.21.0 · 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
Source§impl PartialEq for FilterMode
impl PartialEq for FilterMode
Source§impl PartialOrd for FilterMode
impl PartialOrd for FilterMode
impl Copy for FilterMode
impl Eq for FilterMode
impl StructuralPartialEq for FilterMode
Auto Trait Implementations§
impl Freeze for FilterMode
impl RefUnwindSafe for FilterMode
impl Send for FilterMode
impl Sync for FilterMode
impl Unpin for FilterMode
impl UnwindSafe for FilterMode
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