Struct h2::Reason [−][src]
pub struct Reason(_);
HTTP/2.0 error codes.
Error codes are used in RST_STREAM
and GOAWAY
frames to convey the
reasons for the stream or connection error. For example,
SendStream::send_reset
takes a Reason
argument. Also, the Error
type
may contain a Reason
.
Error codes share a common code space. Some error codes apply only to streams, others apply only to connections, and others may apply to either. See [RFC 7540] for more information.
Implementations
impl Reason
[src]
impl Reason
[src]pub const NO_ERROR: Reason
[src]
The associated condition is not a result of an error.
For example, a GOAWAY might include this code to indicate graceful shutdown of a connection.
pub const PROTOCOL_ERROR: Reason
[src]
The endpoint detected an unspecific protocol error.
This error is for use when a more specific error code is not available.
pub const INTERNAL_ERROR: Reason
[src]
The endpoint encountered an unexpected internal error.
pub const FLOW_CONTROL_ERROR: Reason
[src]
The endpoint detected that its peer violated the flow-control protocol.
pub const SETTINGS_TIMEOUT: Reason
[src]
The endpoint sent a SETTINGS frame but did not receive a response in a timely manner.
pub const STREAM_CLOSED: Reason
[src]
The endpoint received a frame after a stream was half-closed.
pub const FRAME_SIZE_ERROR: Reason
[src]
The endpoint received a frame with an invalid size.
pub const REFUSED_STREAM: Reason
[src]
The endpoint refused the stream prior to performing any application processing.
pub const CANCEL: Reason
[src]
Used by the endpoint to indicate that the stream is no longer needed.
pub const COMPRESSION_ERROR: Reason
[src]
The endpoint is unable to maintain the header compression context for the connection.
pub const CONNECT_ERROR: Reason
[src]
The connection established in response to a CONNECT request was reset or abnormally closed.
pub const ENHANCE_YOUR_CALM: Reason
[src]
The endpoint detected that its peer is exhibiting a behavior that might be generating excessive load.
pub const INADEQUATE_SECURITY: Reason
[src]
The underlying transport has properties that do not meet minimum security requirements.
pub const HTTP_1_1_REQUIRED: Reason
[src]
The endpoint requires that HTTP/1.1 be used instead of HTTP/2.
pub fn description(&self) -> &str
[src]
Get a string description of the error code.
Trait Implementations
impl Copy for Reason
[src]
impl Eq for Reason
[src]
impl StructuralEq for Reason
[src]
impl StructuralPartialEq for Reason
[src]
Auto Trait Implementations
impl RefUnwindSafe for Reason
impl Send for Reason
impl Sync for Reason
impl Unpin for Reason
impl UnwindSafe for Reason
Blanket Implementations
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> WithSubscriber for T
[src]
impl<T> WithSubscriber for T
[src]pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,