pub enum CompressionAlgorithmError {
Invalid,
}
Available on crate features
ext_*
and ext_compress
only.Variants§
Invalid
Trait Implementations§
source§impl Clone for CompressionAlgorithmError
impl Clone for CompressionAlgorithmError
source§fn clone(&self) -> CompressionAlgorithmError
fn clone(&self) -> CompressionAlgorithmError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CompressionAlgorithmError
impl Debug for CompressionAlgorithmError
source§impl Display for CompressionAlgorithmError
impl Display for CompressionAlgorithmError
source§impl Error for CompressionAlgorithmError
impl Error for CompressionAlgorithmError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 Hash for CompressionAlgorithmError
impl Hash for CompressionAlgorithmError
source§impl Ord for CompressionAlgorithmError
impl Ord for CompressionAlgorithmError
source§fn cmp(&self, other: &CompressionAlgorithmError) -> Ordering
fn cmp(&self, other: &CompressionAlgorithmError) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<CompressionAlgorithmError> for CompressionAlgorithmError
impl PartialEq<CompressionAlgorithmError> for CompressionAlgorithmError
source§fn eq(&self, other: &CompressionAlgorithmError) -> bool
fn eq(&self, other: &CompressionAlgorithmError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<CompressionAlgorithmError> for CompressionAlgorithmError
impl PartialOrd<CompressionAlgorithmError> for CompressionAlgorithmError
source§fn partial_cmp(&self, other: &CompressionAlgorithmError) -> Option<Ordering>
fn partial_cmp(&self, other: &CompressionAlgorithmError) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for CompressionAlgorithmError
impl StructuralEq for CompressionAlgorithmError
impl StructuralPartialEq for CompressionAlgorithmError
Auto Trait Implementations§
impl RefUnwindSafe for CompressionAlgorithmError
impl Send for CompressionAlgorithmError
impl Sync for CompressionAlgorithmError
impl Unpin for CompressionAlgorithmError
impl UnwindSafe for CompressionAlgorithmError
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