Enum libp2p_autonat::InboundFailure
source · 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§
source§impl Clone for InboundFailure
impl Clone for InboundFailure
source§fn clone(&self) -> InboundFailure
fn clone(&self) -> InboundFailure
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InboundFailure
impl Debug for InboundFailure
source§impl Display for InboundFailure
impl Display for InboundFailure
source§impl Error for InboundFailure
impl Error for InboundFailure
1.30.0 · source§fn 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 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl PartialEq<InboundFailure> for InboundFailure
impl PartialEq<InboundFailure> for InboundFailure
source§fn 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 ==
.