pub enum IQEngineError {
Base64Error(DecodeError),
MissingIQError,
NotYetImplemented(String),
UnsupportedDataType(DataType),
MandatoryParameter(String),
IOError(Error),
FutureSDRError(Error),
HoundError(Error),
IntoInnerError(IntoInnerError<BufWriter<Cursor<Vec<u8>>>>),
}Variants§
Base64Error(DecodeError)
MissingIQError
NotYetImplemented(String)
UnsupportedDataType(DataType)
MandatoryParameter(String)
IOError(Error)
FutureSDRError(Error)
HoundError(Error)
IntoInnerError(IntoInnerError<BufWriter<Cursor<Vec<u8>>>>)
Trait Implementations§
Source§impl Debug for IQEngineError
impl Debug for IQEngineError
Source§impl Display for IQEngineError
impl Display for IQEngineError
Source§impl Error for IQEngineError
impl Error for IQEngineError
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()
Source§impl From<DecodeError> for IQEngineError
impl From<DecodeError> for IQEngineError
Source§fn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for IQEngineError
impl From<Error> for IQEngineError
Auto Trait Implementations§
impl Freeze for IQEngineError
impl !RefUnwindSafe for IQEngineError
impl Send for IQEngineError
impl Sync for IQEngineError
impl Unpin for IQEngineError
impl !UnwindSafe for IQEngineError
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