FFTResult

Type Alias FFTResult 

Source
pub type FFTResult<T> = Result<T, FFTError>;
Expand description

Result type for FFT operations

Aliased Type§

pub enum FFTResult<T> {
    Ok(T),
    Err(FFTError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(FFTError)

Contains the error value