pub enum IngrisError {
Unzip(DecompressError),
IOError(Error),
BufferError(TryFromSliceError),
Version(),
}Variants§
Trait Implementations§
Source§impl Debug for IngrisError
impl Debug for IngrisError
Source§impl Display for IngrisError
impl Display for IngrisError
Source§impl Error for IngrisError
impl Error for IngrisError
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()
Source§impl From<DecompressError> for IngrisError
impl From<DecompressError> for IngrisError
Source§fn from(value: DecompressError) -> Self
fn from(value: DecompressError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for IngrisError
impl From<Error> for IngrisError
Source§impl From<TryFromSliceError> for IngrisError
impl From<TryFromSliceError> for IngrisError
Source§fn from(value: TryFromSliceError) -> Self
fn from(value: TryFromSliceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IngrisError
impl !RefUnwindSafe for IngrisError
impl Send for IngrisError
impl Sync for IngrisError
impl Unpin for IngrisError
impl !UnwindSafe for IngrisError
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