Struct libp2p_swarm::behaviour::ExternalAddresses
source · pub struct ExternalAddresses { /* private fields */ }
Expand description
Utility struct for tracking the external addresses of a Swarm
.
Implementations§
source§impl ExternalAddresses
impl ExternalAddresses
sourcepub fn iter(&self) -> impl ExactSizeIterator<Item = &Multiaddr>
pub fn iter(&self) -> impl ExactSizeIterator<Item = &Multiaddr>
Returns an Iterator
over all external addresses.
sourcepub fn on_swarm_event<THandler>(&mut self, event: &FromSwarm<'_, THandler>)where
THandler: IntoConnectionHandler,
pub fn on_swarm_event<THandler>(&mut self, event: &FromSwarm<'_, THandler>)where THandler: IntoConnectionHandler,
Feed a FromSwarm
event to this struct.
Trait Implementations§
source§impl Clone for ExternalAddresses
impl Clone for ExternalAddresses
source§fn clone(&self) -> ExternalAddresses
fn clone(&self) -> ExternalAddresses
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 ExternalAddresses
impl Debug for ExternalAddresses
Auto Trait Implementations§
impl RefUnwindSafe for ExternalAddresses
impl Send for ExternalAddresses
impl Sync for ExternalAddresses
impl Unpin for ExternalAddresses
impl UnwindSafe for ExternalAddresses
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