#[repr(u8)]pub enum PsCtrlDecy {
DISABLE = 0,
DECY2 = 1,
DECY4 = 2,
DECY8 = 3,
}Variants§
DISABLE = 0
Disable pre-decimation filter.
DECY2 = 1
Decimate PS by 2.
DECY4 = 2
Decimate PS by 4.
DECY8 = 3
Decimate PS by 8.
Implementations§
Source§impl PsCtrlDecy
impl PsCtrlDecy
Trait Implementations§
Source§impl Clone for PsCtrlDecy
impl Clone for PsCtrlDecy
Source§fn clone(&self) -> PsCtrlDecy
fn clone(&self) -> PsCtrlDecy
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 PsCtrlDecy
impl Debug for PsCtrlDecy
Source§impl From<PsCtrlDecy> for u8
impl From<PsCtrlDecy> for u8
Source§fn from(val: PsCtrlDecy) -> u8
fn from(val: PsCtrlDecy) -> u8
Converts to this type from the input type.
Source§impl From<u8> for PsCtrlDecy
impl From<u8> for PsCtrlDecy
Source§fn from(val: u8) -> PsCtrlDecy
fn from(val: u8) -> PsCtrlDecy
Converts to this type from the input type.
Source§impl Ord for PsCtrlDecy
impl Ord for PsCtrlDecy
Source§fn cmp(&self, other: &PsCtrlDecy) -> Ordering
fn cmp(&self, other: &PsCtrlDecy) -> 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 PsCtrlDecy
impl PartialEq for PsCtrlDecy
Source§impl PartialOrd for PsCtrlDecy
impl PartialOrd for PsCtrlDecy
impl Copy for PsCtrlDecy
impl Eq for PsCtrlDecy
impl StructuralPartialEq for PsCtrlDecy
Auto Trait Implementations§
impl Freeze for PsCtrlDecy
impl RefUnwindSafe for PsCtrlDecy
impl Send for PsCtrlDecy
impl Sync for PsCtrlDecy
impl Unpin for PsCtrlDecy
impl UnwindSafe for PsCtrlDecy
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