pub enum InboundFailure {
Timeout,
ConnectionClosed,
UnsupportedProtocols,
ResponseOmission,
}
Expand description
Possible failures occurring in the context of receiving an inbound request and sending a response.
Variants
Timeout
The inbound request timed out, either while reading the
incoming request or before a response is sent, e.g. if
RequestResponse::send_response
is not called in a
timely manner.
ConnectionClosed
The connection closed before a response could be send.
UnsupportedProtocols
The local peer supports none of the protocols requested by the remote.
ResponseOmission
The local peer failed to respond to an inbound request
due to the ResponseChannel
being dropped instead of
being passed to RequestResponse::send_response
.
Trait Implementations
sourceimpl Clone for InboundFailure
impl Clone for InboundFailure
sourcefn clone(&self) -> InboundFailure
fn clone(&self) -> InboundFailure
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InboundFailure
impl Debug for InboundFailure
sourceimpl Display for InboundFailure
impl Display for InboundFailure
sourceimpl Error for InboundFailure
impl Error for InboundFailure
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
sourceimpl PartialEq<InboundFailure> for InboundFailure
impl PartialEq<InboundFailure> for InboundFailure
sourcefn eq(&self, other: &InboundFailure) -> bool
fn eq(&self, other: &InboundFailure) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl Eq for InboundFailure
impl StructuralEq for InboundFailure
impl StructuralPartialEq for InboundFailure
Auto Trait Implementations
impl RefUnwindSafe for InboundFailure
impl Send for InboundFailure
impl Sync for InboundFailure
impl Unpin for InboundFailure
impl UnwindSafe for InboundFailure
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more