pub enum FftDirection {
Forward = 0,
Inverse = 1,
}Expand description
Direction for FFT operations
Variants§
Trait Implementations§
Source§impl Clone for FftDirection
impl Clone for FftDirection
Source§fn clone(&self) -> FftDirection
fn clone(&self) -> FftDirection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FftDirection
impl Debug for FftDirection
Source§impl PartialEq for FftDirection
impl PartialEq for FftDirection
Source§fn eq(&self, other: &FftDirection) -> bool
fn eq(&self, other: &FftDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FftDirection
impl Eq for FftDirection
impl StructuralPartialEq for FftDirection
Auto Trait Implementations§
impl Freeze for FftDirection
impl RefUnwindSafe for FftDirection
impl Send for FftDirection
impl Sync for FftDirection
impl Unpin for FftDirection
impl UnsafeUnpin for FftDirection
impl UnwindSafe for FftDirection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.