pub enum ParseCompressionOptionsError {
    CompressionLevelWithStored(i8),
    InvalidCompressionLevel(CompressionMethod, i8, RangeInclusive<i8>),
    TryFromInt(TryFromIntError),
}Variants§
CompressionLevelWithStored(i8)
“stored” (uncompressed) does not accept a compression level (was: {0})
InvalidCompressionLevel(CompressionMethod, i8, RangeInclusive<i8>)
compression level {1} was invalid for method {0} which accepts {2:?}
TryFromInt(TryFromIntError)
error converting from int (this should never happen!): {0}
Trait Implementations§
source§impl Debug for ParseCompressionOptionsError
 
impl Debug for ParseCompressionOptionsError
source§impl Error for ParseCompressionOptionsError
 
impl Error for ParseCompressionOptionsError
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 From<TryFromIntError> for ParseCompressionOptionsError
 
impl From<TryFromIntError> for ParseCompressionOptionsError
source§fn from(source: TryFromIntError) -> Self
 
fn from(source: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for ParseCompressionOptionsError
impl Send for ParseCompressionOptionsError
impl Sync for ParseCompressionOptionsError
impl Unpin for ParseCompressionOptionsError
impl UnwindSafe for ParseCompressionOptionsError
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