pub enum H2Error {
Operation(OperationError),
MissingPseudo(&'static str),
Uri(InvalidUri),
Stream(Box<dyn Error>),
}Expand description
A set of errors that can occur during dispatching http2 requests
Variants§
Operation(OperationError)
Operation error
MissingPseudo(&'static str)
Pseudo headers error
Uri(InvalidUri)
Uri parsing error
Stream(Box<dyn Error>)
Body stream error
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<InvalidUri> for H2Error
impl From<InvalidUri> for H2Error
source§fn from(source: InvalidUri) -> Self
fn from(source: InvalidUri) -> Self
Converts to this type from the input type.
source§impl From<OperationError> for H2Error
impl From<OperationError> for H2Error
source§fn from(source: OperationError) -> Self
fn from(source: OperationError) -> 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 !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