pub trait Direction {
// Required method
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§
Sourcefn fft_direction(&self) -> FftDirection
fn fft_direction(&self) -> FftDirection
Returns FftDirection::Forward if this instance computes forward FFTs, or FftDirection::Inverse for inverse FFTs