pub trait C2rPlanner<T = f64> {
type Plan: C2rPlan<T>;
// Required method
fn plan_c2r(&mut self, n_fft: usize) -> SpectrogramResult<Self::Plan>;
}Expand description
Planner that can construct inverse FFT plans.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".