Enum FromSwarm
#[non_exhaustive]pub enum FromSwarm<'a> {
Show 14 variants
ConnectionEstablished(ConnectionEstablished<'a>),
ConnectionClosed(ConnectionClosed<'a>),
AddressChange(AddressChange<'a>),
DialFailure(DialFailure<'a>),
ListenFailure(ListenFailure<'a>),
NewListener(NewListener),
NewListenAddr(NewListenAddr<'a>),
ExpiredListenAddr(ExpiredListenAddr<'a>),
ListenerError(ListenerError<'a>),
ListenerClosed(ListenerClosed<'a>),
NewExternalAddrCandidate(NewExternalAddrCandidate<'a>),
ExternalAddrConfirmed(ExternalAddrConfirmed<'a>),
ExternalAddrExpired(ExternalAddrExpired<'a>),
NewExternalAddrOfPeer(NewExternalAddrOfPeer<'a>),
}
Expand description
Enumeration with the list of the possible events
to pass to on_swarm_event
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ConnectionEstablished(ConnectionEstablished<'a>)
Informs the behaviour about a newly established connection to a peer.
ConnectionClosed(ConnectionClosed<'a>)
Informs the behaviour about a closed connection to a peer.
This event is always paired with an earlier
FromSwarm::ConnectionEstablished
with the same peer ID, connection ID
and endpoint.
AddressChange(AddressChange<'a>)
Informs the behaviour that the ConnectedPoint
of an existing
connection has changed.
DialFailure(DialFailure<'a>)
Informs the behaviour that the dial to a known or unknown node failed.
ListenFailure(ListenFailure<'a>)
Informs the behaviour that an error happened on an incoming connection during its initial handshake.
This can include, for example, an error during the handshake of the encryption layer, or the connection unexpectedly closed.
NewListener(NewListener)
Informs the behaviour that a new listener was created.
NewListenAddr(NewListenAddr<'a>)
Informs the behaviour that we have started listening on a new multiaddr.
ExpiredListenAddr(ExpiredListenAddr<'a>)
Informs the behaviour that a multiaddr we were listening on has expired, which means that we are no longer listening on it.
ListenerError(ListenerError<'a>)
Informs the behaviour that a listener experienced an error.
ListenerClosed(ListenerClosed<'a>)
Informs the behaviour that a listener closed.
NewExternalAddrCandidate(NewExternalAddrCandidate<'a>)
Informs the behaviour that we have discovered a new candidate for an external address for us.
ExternalAddrConfirmed(ExternalAddrConfirmed<'a>)
Informs the behaviour that an external address of the local node was confirmed.
ExternalAddrExpired(ExternalAddrExpired<'a>)
Informs the behaviour that an external address of the local node expired, i.e. is no-longer confirmed.
NewExternalAddrOfPeer(NewExternalAddrOfPeer<'a>)
Informs the behaviour that we have discovered a new external address for a remote peer.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for FromSwarm<'a>
impl<'a> !RefUnwindSafe for FromSwarm<'a>
impl<'a> !Send for FromSwarm<'a>
impl<'a> !Sync for FromSwarm<'a>
impl<'a> Unpin for FromSwarm<'a>
impl<'a> !UnwindSafe for FromSwarm<'a>
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more