Enum libp2p_swarm::DialError
source · pub enum DialError {
Banned,
ConnectionLimit(ConnectionLimit),
LocalPeerId,
NoAddresses,
DialPeerConditionFalse(PeerCondition),
Aborted,
InvalidPeerId(Multihash),
WrongPeerId {
obtained: PeerId,
endpoint: ConnectedPoint,
},
ConnectionIo(Error),
Transport(Vec<(Multiaddr, TransportError<Error>)>),
}
Expand description
The possible failures of dialing.
Variants§
Banned
The peer is currently banned.
ConnectionLimit(ConnectionLimit)
The configured limit for simultaneous outgoing connections has been reached.
LocalPeerId
The peer being dialed is the local peer and thus the dial was aborted.
NoAddresses
NetworkBehaviour::addresses_of_peer
returned no addresses
for the peer to dial.
DialPeerConditionFalse(PeerCondition)
The provided dial_opts::PeerCondition
evaluated to false and thus
the dial was aborted.
Aborted
Pending connection attempt has been aborted.
InvalidPeerId(Multihash)
The provided peer identity is invalid.
WrongPeerId
The peer identity obtained on the connection did not match the one that was expected.
ConnectionIo(Error)
An I/O error occurred on the connection.
Transport(Vec<(Multiaddr, TransportError<Error>)>)
An error occurred while negotiating the transport protocol(s) on a connection.
Trait Implementations§
source§impl Error for DialError
impl Error for DialError
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 From<PendingConnectionError<Vec<(Multiaddr, TransportError<Error>), Global>>> for DialError
impl From<PendingConnectionError<Vec<(Multiaddr, TransportError<Error>), Global>>> for DialError
source§fn from(error: PendingOutboundConnectionError<Error>) -> Self
fn from(error: PendingOutboundConnectionError<Error>) -> Self
Converts to this type from the input type.