pub enum Http2ParseError {
InvalidPreface,
InvalidFrameHeader,
InvalidFrameLength(u32),
InvalidStreamId(u32),
FrameTooLarge(u32),
MissingRequiredHeaders,
InvalidPseudoHeader(String),
IncompleteFrame,
InvalidUtf8,
UnsupportedFeature(String),
HpackDecodingFailed,
}
Variants§
InvalidPreface
InvalidFrameHeader
InvalidFrameLength(u32)
InvalidStreamId(u32)
FrameTooLarge(u32)
MissingRequiredHeaders
InvalidPseudoHeader(String)
IncompleteFrame
InvalidUtf8
UnsupportedFeature(String)
HpackDecodingFailed
Trait Implementations§
Source§impl Clone for Http2ParseError
impl Clone for Http2ParseError
Source§fn clone(&self) -> Http2ParseError
fn clone(&self) -> Http2ParseError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Http2ParseError
impl Debug for Http2ParseError
Source§impl Display for Http2ParseError
impl Display for Http2ParseError
Source§impl Error for Http2ParseError
impl Error for Http2ParseError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for Http2ParseError
impl RefUnwindSafe for Http2ParseError
impl Send for Http2ParseError
impl Sync for Http2ParseError
impl Unpin for Http2ParseError
impl UnwindSafe for Http2ParseError
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