Enum libp2p_swarm::DialError
source · pub enum DialError {
LocalPeerId {
endpoint: ConnectedPoint,
},
NoAddresses,
DialPeerConditionFalse(PeerCondition),
Aborted,
WrongPeerId {
obtained: PeerId,
endpoint: ConnectedPoint,
},
Denied {
cause: ConnectionDenied,
},
Transport(Vec<(Multiaddr, TransportError<Error>)>),
}
Expand description
Possible errors when trying to establish or upgrade an outbound connection.
Variants§
LocalPeerId
Fields
§
endpoint: ConnectedPoint
The peer identity obtained on the connection matches the local peer.
NoAddresses
No addresses have been provided by NetworkBehaviour::handle_pending_outbound_connection
and DialOpts
.
DialPeerConditionFalse(PeerCondition)
The provided dial_opts::PeerCondition
evaluated to false and thus
the dial was aborted.
Aborted
Pending connection attempt has been aborted.
WrongPeerId
The peer identity obtained on the connection did not match the one that was expected.
Denied
Fields
§
cause: ConnectionDenied
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()
Auto Trait Implementations§
impl !RefUnwindSafe for DialError
impl Send for DialError
impl Sync for DialError
impl Unpin for DialError
impl !UnwindSafe for DialError
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more