pub struct CompressionUnsupported(/* private fields */);
Trait Implementations§
Source§impl Clone for CompressionUnsupported
impl Clone for CompressionUnsupported
Source§fn clone(&self) -> CompressionUnsupported
fn clone(&self) -> CompressionUnsupported
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompressionUnsupported
impl Debug for CompressionUnsupported
Source§impl Display for CompressionUnsupported
impl Display for CompressionUnsupported
Source§impl Error for CompressionUnsupported
impl Error for CompressionUnsupported
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<CompressionUnsupported> for Error
impl From<CompressionUnsupported> for Error
Source§fn from(source: CompressionUnsupported) -> Self
fn from(source: CompressionUnsupported) -> Self
Converts to this type from the input type.
Source§impl Hash for CompressionUnsupported
impl Hash for CompressionUnsupported
Source§impl Ord for CompressionUnsupported
impl Ord for CompressionUnsupported
Source§fn cmp(&self, other: &CompressionUnsupported) -> Ordering
fn cmp(&self, other: &CompressionUnsupported) -> 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 for CompressionUnsupported
impl PartialEq for CompressionUnsupported
Source§fn eq(&self, other: &CompressionUnsupported) -> bool
fn eq(&self, other: &CompressionUnsupported) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for CompressionUnsupported
impl PartialOrd for CompressionUnsupported
impl Copy for CompressionUnsupported
impl Eq for CompressionUnsupported
impl StructuralPartialEq for CompressionUnsupported
Auto Trait Implementations§
impl Freeze for CompressionUnsupported
impl RefUnwindSafe for CompressionUnsupported
impl Send for CompressionUnsupported
impl Sync for CompressionUnsupported
impl Unpin for CompressionUnsupported
impl UnwindSafe for CompressionUnsupported
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more