pub type FFTResult<T> = Result<T, FFTError>;
Result type for FFT operations
pub enum FFTResult<T> { Ok(T), Err(FFTError), }
Contains the success value
Contains the error value