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
pub fn iter(&self) -> impl ExactSizeIterator
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
source§impl Default for ExternalAddresses
impl Default for ExternalAddresses
source§fn default() -> ExternalAddresses
fn default() -> ExternalAddresses
Returns the “default value” for a type. Read more
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