#[repr(u8)]pub enum FiltCnt {
BYPASSED = 0,
SAMPLE_1 = 1,
SAMPLE_2 = 2,
SAMPLE_3 = 3,
SAMPLE_4 = 4,
SAMPLE_5 = 5,
SAMPLE_6 = 6,
SAMPLE_7 = 7,
}Variants§
BYPASSED = 0
Filter is bypassed: COUT = COUTA
SAMPLE_1 = 1
1 consecutive sample (Comparator output is simply sampled.)
SAMPLE_2 = 2
2 consecutive samples
SAMPLE_3 = 3
3 consecutive samples
SAMPLE_4 = 4
4 consecutive samples
SAMPLE_5 = 5
5 consecutive samples
SAMPLE_6 = 6
6 consecutive samples
SAMPLE_7 = 7
7 consecutive samples
Implementations§
Trait Implementations§
Source§impl Ord for FiltCnt
impl Ord for FiltCnt
Source§impl PartialOrd for FiltCnt
impl PartialOrd for FiltCnt
impl Copy for FiltCnt
impl Eq for FiltCnt
impl StructuralPartialEq for FiltCnt
Auto Trait Implementations§
impl Freeze for FiltCnt
impl RefUnwindSafe for FiltCnt
impl Send for FiltCnt
impl Sync for FiltCnt
impl Unpin for FiltCnt
impl UnwindSafe for FiltCnt
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