#[non_exhaustive]pub enum ReadFrameHeaderError {
MagicNumberReadError(Error),
BadMagicNumber(u32),
FrameDescriptorReadError(Error),
InvalidFrameDescriptor(FrameDescriptorError),
WindowDescriptorReadError(Error),
DictionaryIdReadError(Error),
FrameContentSizeReadError(Error),
SkipFrame {
magic_number: u32,
length: u32,
},
}
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.
MagicNumberReadError(Error)
BadMagicNumber(u32)
FrameDescriptorReadError(Error)
InvalidFrameDescriptor(FrameDescriptorError)
WindowDescriptorReadError(Error)
DictionaryIdReadError(Error)
FrameContentSizeReadError(Error)
SkipFrame
Trait Implementations§
Source§impl Debug for ReadFrameHeaderError
impl Debug for ReadFrameHeaderError
Source§impl Display for ReadFrameHeaderError
impl Display for ReadFrameHeaderError
Source§impl Error for ReadFrameHeaderError
impl Error for ReadFrameHeaderError
Source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + '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<FrameDescriptorError> for ReadFrameHeaderError
impl From<FrameDescriptorError> for ReadFrameHeaderError
Source§fn from(error: FrameDescriptorError) -> Self
fn from(error: FrameDescriptorError) -> Self
Converts to this type from the input type.
Source§impl From<ReadFrameHeaderError> for FrameDecoderError
impl From<ReadFrameHeaderError> for FrameDecoderError
Source§fn from(val: ReadFrameHeaderError) -> Self
fn from(val: ReadFrameHeaderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReadFrameHeaderError
impl !RefUnwindSafe for ReadFrameHeaderError
impl Send for ReadFrameHeaderError
impl Sync for ReadFrameHeaderError
impl Unpin for ReadFrameHeaderError
impl !UnwindSafe for ReadFrameHeaderError
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