pub struct H2Error {
pub code: ErrorCode,
pub message: Option<String>,
pub stream_id: Option<u32>,
}Expand description
An HTTP/2-level error. When stream_id is set the error is stream-scoped
(RST_STREAM); otherwise it is a connection error (GOAWAY).
Fields§
§code: ErrorCode§message: Option<String>§stream_id: Option<u32>Implementations§
Trait Implementations§
impl Eq for H2Error
Source§impl Error for H2Error
impl Error for H2Error
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()
impl StructuralPartialEq for H2Error
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