Trait rustfft::Direction

source ·
pub trait Direction {
    fn fft_direction(&self) -> FftDirection;
}
Expand description

A trait that allows FFT algorithms to report whether they compute forward FFTs or inverse FFTs

Required Methods

Returns FftDirection::Forward if this instance computes forward FFTs, or FftDirection::Inverse for inverse FFTs

Implementors