Enum fftw3::FftError [-]  [+] [src]

pub enum FftError {
    InsufficientSpace(uint, uint),
    FailedPlan,
}

Errors that can occur while planning or running a fourier transform.

Variants

InsufficientSpace

The input slice was too long for the the output (elements are the lengths of those respective slices).

FailedPlan

FFTW returned an error (a null plan) when planning.

Trait Implementations

impl Show for FftError

fn fmt(&self, fmtr: &mut Formatter) -> Result

impl Error for FftError

fn description(&self) -> &str

fn detail(&self) -> Option<String>

fn cause(&self) -> Option<&Error>