pub struct Reason(/* private fields */);
Expand description
HTTP/2 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§
Source§impl Reason
impl Reason
Sourcepub const NO_ERROR: Reason
pub const NO_ERROR: Reason
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.
Sourcepub const PROTOCOL_ERROR: Reason
pub const PROTOCOL_ERROR: Reason
The endpoint detected an unspecific protocol error.
This error is for use when a more specific error code is not available.
Sourcepub const INTERNAL_ERROR: Reason
pub const INTERNAL_ERROR: Reason
The endpoint encountered an unexpected internal error.
Sourcepub const FLOW_CONTROL_ERROR: Reason
pub const FLOW_CONTROL_ERROR: Reason
The endpoint detected that its peer violated the flow-control protocol.
Sourcepub const SETTINGS_TIMEOUT: Reason
pub const SETTINGS_TIMEOUT: Reason
The endpoint sent a SETTINGS frame but did not receive a response in a timely manner.
Sourcepub const STREAM_CLOSED: Reason
pub const STREAM_CLOSED: Reason
The endpoint received a frame after a stream was half-closed.
Sourcepub const FRAME_SIZE_ERROR: Reason
pub const FRAME_SIZE_ERROR: Reason
The endpoint received a frame with an invalid size.
Sourcepub const REFUSED_STREAM: Reason
pub const REFUSED_STREAM: Reason
The endpoint refused the stream prior to performing any application processing.
Sourcepub const COMPRESSION_ERROR: Reason
pub const COMPRESSION_ERROR: Reason
The endpoint is unable to maintain the header compression context for the connection.
Sourcepub const CONNECT_ERROR: Reason
pub const CONNECT_ERROR: Reason
The connection established in response to a CONNECT request was reset or abnormally closed.
Sourcepub const ENHANCE_YOUR_CALM: Reason
pub const ENHANCE_YOUR_CALM: Reason
The endpoint detected that its peer is exhibiting a behavior that might be generating excessive load.
Sourcepub const INADEQUATE_SECURITY: Reason
pub const INADEQUATE_SECURITY: Reason
The underlying transport has properties that do not meet minimum security requirements.
Sourcepub const HTTP_1_1_REQUIRED: Reason
pub const HTTP_1_1_REQUIRED: Reason
The endpoint requires that HTTP/1.1 be used instead of HTTP/2.
Sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Get a string description of the error code.