Enum ruzstd::decoding::dictionary::DictionaryDecodeError
source · #[non_exhaustive]pub enum DictionaryDecodeError {
BadMagicNum {
got: [u8; 4],
},
FSETableError(FSETableError),
HuffmanTableError(HuffmanTableError),
}
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.
Trait Implementations§
source§impl Debug for DictionaryDecodeError
impl Debug for DictionaryDecodeError
source§impl Display for DictionaryDecodeError
impl Display for DictionaryDecodeError
source§impl Error for DictionaryDecodeError
impl Error for DictionaryDecodeError
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<DictionaryDecodeError> for FrameDecoderError
impl From<DictionaryDecodeError> for FrameDecoderError
source§fn from(original: DictionaryDecodeError) -> FrameDecoderError
fn from(original: DictionaryDecodeError) -> FrameDecoderError
Converts to this type from the input type.
source§impl From<FSETableError> for DictionaryDecodeError
impl From<FSETableError> for DictionaryDecodeError
source§fn from(original: FSETableError) -> DictionaryDecodeError
fn from(original: FSETableError) -> DictionaryDecodeError
Converts to this type from the input type.
source§impl From<HuffmanTableError> for DictionaryDecodeError
impl From<HuffmanTableError> for DictionaryDecodeError
source§fn from(original: HuffmanTableError) -> DictionaryDecodeError
fn from(original: HuffmanTableError) -> DictionaryDecodeError
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for DictionaryDecodeError
impl Send for DictionaryDecodeError
impl Sync for DictionaryDecodeError
impl Unpin for DictionaryDecodeError
impl UnwindSafe for DictionaryDecodeError
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