#[repr(usize)]pub enum FftMode {
Complex = 0,
Real = 1,
}Expand description
Variants§
Implementations§
source§impl FftMode
impl FftMode
sourcepub const fn is_complex(&self) -> bool
pub const fn is_complex(&self) -> bool
Returns true if the enum is FftMode::Complex otherwise false
Trait Implementations§
source§impl<'de> Deserialize<'de> for FftMode
impl<'de> Deserialize<'de> for FftMode
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl IntoEnumIterator for FftMode
impl IntoEnumIterator for FftMode
type Iterator = FftModeIter
fn iter() -> FftModeIter ⓘ
source§impl Ord for FftMode
impl Ord for FftMode
source§impl PartialEq for FftMode
impl PartialEq for FftMode
source§impl PartialOrd for FftMode
impl PartialOrd for FftMode
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl VariantNames for FftMode
impl VariantNames for FftMode
impl Copy for FftMode
impl Eq for FftMode
impl StructuralPartialEq for FftMode
Auto Trait Implementations§
impl Freeze for FftMode
impl RefUnwindSafe for FftMode
impl Send for FftMode
impl Sync for FftMode
impl Unpin for FftMode
impl UnwindSafe for FftMode
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