Trait rustfft::Length

source ·
pub trait Length {
    // Required method
    fn len(&self) -> usize;
}
Expand description

A trait that allows FFT algorithms to report their expected input/output size

Required Methods§

source

fn len(&self) -> usize

The FFT size that this algorithm can process

Implementors§