pub enum DataSpoolError {
Io(Error),
InvalidFormat,
Dictionary(String),
Decompression(String),
Serialization(String),
}Variants§
Trait Implementations§
Source§impl Debug for DataSpoolError
impl Debug for DataSpoolError
Source§impl Display for DataSpoolError
impl Display for DataSpoolError
Source§impl Error for DataSpoolError
impl Error for DataSpoolError
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()
Auto Trait Implementations§
impl Freeze for DataSpoolError
impl !RefUnwindSafe for DataSpoolError
impl Send for DataSpoolError
impl Sync for DataSpoolError
impl Unpin for DataSpoolError
impl UnsafeUnpin for DataSpoolError
impl !UnwindSafe for DataSpoolError
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