#[repr(u8)]pub enum SincCutoff {
Show 16 variants
SINC_CUTOFF_0 = 0,
SINC_CUTOFF_1 = 1,
SINC_CUTOFF_2 = 2,
SINC_CUTOFF_3 = 3,
SINC_CUTOFF_4 = 4,
SINC_CUTOFF_5 = 5,
SINC_CUTOFF_6 = 6,
SINC_CUTOFF_7 = 7,
SINC_CUTOFF_8 = 8,
SINC_CUTOFF_9 = 9,
SINC_CUTOFF_10 = 10,
SINC_CUTOFF_11 = 11,
SINC_CUTOFF_12 = 12,
SINC_CUTOFF_13 = 13,
SINC_CUTOFF_14 = 14,
SINC_CUTOFF_15 = 15,
}Variants§
SINC_CUTOFF_0 = 0
div=0
SINC_CUTOFF_1 = 1
div=2
SINC_CUTOFF_2 = 2
div=4
SINC_CUTOFF_3 = 3
div=8
SINC_CUTOFF_4 = 4
div=16
SINC_CUTOFF_5 = 5
div=32
SINC_CUTOFF_6 = 6
div=64
SINC_CUTOFF_7 = 7
div=128
SINC_CUTOFF_8 = 8
NC
SINC_CUTOFF_9 = 9
NC
SINC_CUTOFF_10 = 10
NC
SINC_CUTOFF_11 = 11
NC
SINC_CUTOFF_12 = 12
NC
SINC_CUTOFF_13 = 13
NC
SINC_CUTOFF_14 = 14
NC
SINC_CUTOFF_15 = 15
NC
Implementations§
Source§impl SincCutoff
impl SincCutoff
Trait Implementations§
Source§impl Clone for SincCutoff
impl Clone for SincCutoff
Source§fn clone(&self) -> SincCutoff
fn clone(&self) -> SincCutoff
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 SincCutoff
impl Debug for SincCutoff
Source§impl From<SincCutoff> for u8
impl From<SincCutoff> for u8
Source§fn from(val: SincCutoff) -> u8
fn from(val: SincCutoff) -> u8
Converts to this type from the input type.
Source§impl From<u8> for SincCutoff
impl From<u8> for SincCutoff
Source§fn from(val: u8) -> SincCutoff
fn from(val: u8) -> SincCutoff
Converts to this type from the input type.
Source§impl Ord for SincCutoff
impl Ord for SincCutoff
Source§fn cmp(&self, other: &SincCutoff) -> Ordering
fn cmp(&self, other: &SincCutoff) -> 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 SincCutoff
impl PartialEq for SincCutoff
Source§impl PartialOrd for SincCutoff
impl PartialOrd for SincCutoff
impl Copy for SincCutoff
impl Eq for SincCutoff
impl StructuralPartialEq for SincCutoff
Auto Trait Implementations§
impl Freeze for SincCutoff
impl RefUnwindSafe for SincCutoff
impl Send for SincCutoff
impl Sync for SincCutoff
impl Unpin for SincCutoff
impl UnwindSafe for SincCutoff
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