pub enum FrameError {
Truncated,
TooLarge {
declared: u32,
},
UnknownEncoding {
tag: u8,
},
Malformed(Error),
Io(Error),
}Expand description
Something that went wrong reading or writing a frame.
Variants§
Truncated
The stream ended where a frame was expected.
TooLarge
The header named a payload larger than MAX_FRAME_BYTES.
UnknownEncoding
The header named an encoding this build does not have.
Malformed(Error)
The payload was not the message it claimed to be.
Io(Error)
The underlying stream failed.
Trait Implementations§
Source§impl Debug for FrameError
impl Debug for FrameError
Source§impl Display for FrameError
impl Display for FrameError
Source§impl Error for FrameError
impl Error for FrameError
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<Error> for FrameError
impl From<Error> for FrameError
Auto Trait Implementations§
impl !RefUnwindSafe for FrameError
impl !UnwindSafe for FrameError
impl Freeze for FrameError
impl Send for FrameError
impl Sync for FrameError
impl Unpin for FrameError
impl UnsafeUnpin for FrameError
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