pub enum FftError {
InvalidSize,
ContainsNaN,
ContainsInfinity,
EmptyInput,
}Expand description
Erros da biblioteca FFT
Variants§
InvalidSize
Tamanho não é potência de 2
ContainsNaN
Input contém NaN
ContainsInfinity
Input contém infinito
EmptyInput
Tamanho zero
Trait Implementations§
Source§impl Error for FftError
impl Error for FftError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl Copy for FftError
impl Eq for FftError
impl StructuralPartialEq for FftError
Auto Trait Implementations§
impl Freeze for FftError
impl RefUnwindSafe for FftError
impl Send for FftError
impl Sync for FftError
impl Unpin for FftError
impl UnwindSafe for FftError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more