Enum TransportEvent
pub enum TransportEvent<TUpgr, TErr> {
NewAddress {
listener_id: ListenerId,
listen_addr: Multiaddr,
},
AddressExpired {
listener_id: ListenerId,
listen_addr: Multiaddr,
},
Incoming {
listener_id: ListenerId,
upgrade: TUpgr,
local_addr: Multiaddr,
send_back_addr: Multiaddr,
},
ListenerClosed {
listener_id: ListenerId,
reason: Result<(), TErr>,
},
ListenerError {
listener_id: ListenerId,
error: TErr,
},
}
Expand description
Event produced by Transport
s.
Variants§
NewAddress
A new address is being listened on.
Fields
listener_id: ListenerId
The listener that is listening on the new address.
AddressExpired
An address is no longer being listened on.
Fields
listener_id: ListenerId
The listener that is no longer listening on the address.
Incoming
A connection is incoming on one of the listeners.
Fields
listener_id: ListenerId
The listener that produced the upgrade.
upgrade: TUpgr
The produced upgrade.
ListenerClosed
A listener closed.
Fields
listener_id: ListenerId
The ID of the listener that closed.
ListenerError
A listener errored.
The listener will continue to be polled for new events and the event is for informational purposes only.
Implementations§
§impl<TUpgr, TErr> TransportEvent<TUpgr, TErr>
impl<TUpgr, TErr> TransportEvent<TUpgr, TErr>
pub fn map_upgrade<U>(
self,
map: impl FnOnce(TUpgr) -> U,
) -> TransportEvent<U, TErr>
pub fn map_upgrade<U>( self, map: impl FnOnce(TUpgr) -> U, ) -> TransportEvent<U, TErr>
In case this TransportEvent
is an upgrade, apply the given function
to the upgrade and produce another transport event based the function’s result.
pub fn map_err<E>(
self,
map_err: impl FnOnce(TErr) -> E,
) -> TransportEvent<TUpgr, E>
pub fn map_err<E>( self, map_err: impl FnOnce(TErr) -> E, ) -> TransportEvent<TUpgr, E>
In case this TransportEvent
is an ListenerError
,
or ListenerClosed
apply the given function to the
error and produce another transport event based on the function’s result.
pub fn is_upgrade(&self) -> bool
pub fn is_upgrade(&self) -> bool
Returns true
if this is an Incoming
transport event.
pub fn into_incoming(self) -> Option<(TUpgr, Multiaddr)>
pub fn into_incoming(self) -> Option<(TUpgr, Multiaddr)>
Try to turn this transport event into the upgrade parts of the incoming connection.
Returns None
if the event is not actually an incoming connection,
otherwise the upgrade and the remote address.
pub fn is_new_address(&self) -> bool
pub fn is_new_address(&self) -> bool
Returns true
if this is a TransportEvent::NewAddress
.
pub fn into_new_address(self) -> Option<Multiaddr>
pub fn into_new_address(self) -> Option<Multiaddr>
Try to turn this transport event into the new Multiaddr
.
Returns None
if the event is not actually a TransportEvent::NewAddress
,
otherwise the address.
pub fn is_address_expired(&self) -> bool
pub fn is_address_expired(&self) -> bool
Returns true
if this is an TransportEvent::AddressExpired
.
pub fn into_address_expired(self) -> Option<Multiaddr>
pub fn into_address_expired(self) -> Option<Multiaddr>
Try to turn this transport event into the expire Multiaddr
.
Returns None
if the event is not actually a TransportEvent::AddressExpired
,
otherwise the address.
pub fn is_listener_error(&self) -> bool
pub fn is_listener_error(&self) -> bool
Returns true
if this is an TransportEvent::ListenerError
transport event.
pub fn into_listener_error(self) -> Option<TErr>
pub fn into_listener_error(self) -> Option<TErr>
Try to turn this transport event into the listener error.
Returns None
if the event is not actually a TransportEvent::ListenerError
`,
otherwise the error.
Trait Implementations§
Auto Trait Implementations§
impl<TUpgr, TErr> Freeze for TransportEvent<TUpgr, TErr>
impl<TUpgr, TErr> RefUnwindSafe for TransportEvent<TUpgr, TErr>where
TUpgr: RefUnwindSafe,
TErr: RefUnwindSafe,
impl<TUpgr, TErr> Send for TransportEvent<TUpgr, TErr>
impl<TUpgr, TErr> Sync for TransportEvent<TUpgr, TErr>
impl<TUpgr, TErr> Unpin for TransportEvent<TUpgr, TErr>
impl<TUpgr, TErr> UnwindSafe for TransportEvent<TUpgr, TErr>where
TUpgr: UnwindSafe,
TErr: UnwindSafe,
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
§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