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