pub enum ZstdError {
Compress(CompressError),
Decompress(DecompressError),
}Expand description
Unified error type wrapping both compression and decompression errors.
Variants§
Compress(CompressError)
Decompress(DecompressError)
Trait Implementations§
impl Eq for ZstdError
Source§impl Error for ZstdError
Available on crate feature std only.
impl Error for ZstdError
Available on crate feature
std only.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<CompressError> for ZstdError
impl From<CompressError> for ZstdError
Source§fn from(e: CompressError) -> Self
fn from(e: CompressError) -> Self
Converts to this type from the input type.
Source§impl From<DecompressError> for ZstdError
impl From<DecompressError> for ZstdError
Source§fn from(e: DecompressError) -> Self
fn from(e: DecompressError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for ZstdError
Auto Trait Implementations§
impl Freeze for ZstdError
impl RefUnwindSafe for ZstdError
impl Send for ZstdError
impl Sync for ZstdError
impl Unpin for ZstdError
impl UnsafeUnpin for ZstdError
impl UnwindSafe for ZstdError
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