Enum ruzstd::huff0::HuffmanDecoderError
source · #[non_exhaustive]pub enum HuffmanDecoderError {
GetBitsError(GetBitsError),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GetBitsError(GetBitsError)
Trait Implementations§
source§impl Debug for HuffmanDecoderError
impl Debug for HuffmanDecoderError
source§impl Display for HuffmanDecoderError
impl Display for HuffmanDecoderError
source§impl Error for HuffmanDecoderError
impl Error for HuffmanDecoderError
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<GetBitsError> for HuffmanDecoderError
impl From<GetBitsError> for HuffmanDecoderError
source§fn from(original: GetBitsError) -> HuffmanDecoderError
fn from(original: GetBitsError) -> HuffmanDecoderError
Converts to this type from the input type.
source§impl From<HuffmanDecoderError> for DecompressLiteralsError
impl From<HuffmanDecoderError> for DecompressLiteralsError
source§fn from(original: HuffmanDecoderError) -> DecompressLiteralsError
fn from(original: HuffmanDecoderError) -> DecompressLiteralsError
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for HuffmanDecoderError
impl Send for HuffmanDecoderError
impl Sync for HuffmanDecoderError
impl Unpin for HuffmanDecoderError
impl UnwindSafe for HuffmanDecoderError
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