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.
pub fn as_slice(&self) -> &[Multiaddr]
sourcepub fn on_swarm_event(&mut self, event: &FromSwarm<'_>) -> bool
pub fn on_swarm_event(&mut self, event: &FromSwarm<'_>) -> bool
Feed a FromSwarm
event to this struct.
Returns whether the event changed our set of external addresses.
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