Enum quiche::h3::Error [−][src]
An HTTP/3 error.
Variants
There is no error or no work to do
The provided buffer is too short.
Internal error in the HTTP/3 stack.
Endpoint detected that the peer is exhibiting behavior that causes. excessive load.
Stream ID or Push ID greater that current maximum was used incorrectly, such as exceeding a limit, reducing a limit, or being reused.
The endpoint detected that its peer created a stream that it will not accept.
A required critical stream was closed.
No SETTINGS frame at beginning of control stream.
A frame was received which is not permitted in the current state.
Frame violated layout or size rules.
QPACK Header block decompression failure.
TransportError(Error)
Error originated from the transport layer.
The underlying QUIC stream (or connection) doesn't have enough capacity for the operation to complete. The application should retry later on.
Error in the payload of a SETTINGS frame.
Server rejected request.
Request or its response cancelled.
Client's request stream terminated without containing a full-formed request.
An HTTP message was malformed and cannot be processed.
The TCP connection established in response to a CONNECT request was reset or abnormally closed.
The requested operation cannot be served over HTTP/3. Peer should retry over HTTP/1.1.
Trait Implementations
impl Clone for Error
[src]
impl Copy for Error
[src]
impl Debug for Error
[src]
impl Display for Error
[src]
impl Error for Error
[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
[src]
pub fn backtrace(&self) -> Option<&Backtrace>
[src]
pub fn description(&self) -> &str
1.0.0[src]
pub fn cause(&self) -> Option<&dyn Error>
1.0.0[src]
impl From<Error> for Error
[src]
impl PartialEq<Error> for Error
[src]
impl StructuralPartialEq for Error
[src]
Auto Trait Implementations
impl RefUnwindSafe for Error
[src]
impl Send for Error
[src]
impl Sync for Error
[src]
impl Unpin for Error
[src]
impl UnwindSafe for Error
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,