pub enum Direction {
Forward,
ForwardScaled,
Inverse,
}
Variants§
Forward
Normal forward FFT
ForwardScaled
Forward FFT with output values scaled by 1/N
This variant can be used to avoid numerical overflows.
Inverse
Inverse FFT
Auto Trait Implementations§
impl Freeze for Direction
impl RefUnwindSafe for Direction
impl Send for Direction
impl Sync for Direction
impl Unpin for Direction
impl UnwindSafe for Direction
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