Trait rustfft::Length[][src]

pub trait Length {
    fn len(&self) -> usize;
}

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

Required Methods

The FFT size that this algorithm can process

Implementors