pub enum H2Error {
Protocol(H2ErrorCode),
Io(Error),
}Expand description
An error that may occur during HTTP/2 stream or connection processing.
When the error is Protocol, the contained H2ErrorCode should be communicated to the peer
via GOAWAY (for connection-level errors) or RST_STREAM (for stream-level errors); the
distinction is contextual. Io errors indicate an unrecoverable transport failure.
Variants§
Protocol(H2ErrorCode)
An HTTP/2 protocol error; the code should be signalled to the peer.
Io(Error)
An unrecoverable I/O error encountered at the network layer.
Trait Implementations§
Source§impl Error for H2Error
impl Error for H2Error
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<H2ErrorCode> for H2Error
impl From<H2ErrorCode> for H2Error
Source§fn from(source: H2ErrorCode) -> Self
fn from(source: H2ErrorCode) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for H2Error
impl !RefUnwindSafe for H2Error
impl Send for H2Error
impl Sync for H2Error
impl Unpin for H2Error
impl UnsafeUnpin for H2Error
impl !UnwindSafe for H2Error
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