Struct libp2p_kad::Addresses [−][src]
pub struct Addresses { /* fields omitted */ }
A non-empty list of (unique) addresses of a peer in the routing table.
Implementations
impl Addresses
[src]
impl Addresses
[src]pub fn new(addr: Multiaddr) -> Addresses
[src]
Creates a new list of addresses.
pub fn first(&self) -> &Multiaddr
[src]
Gets a reference to the first address in the list.
pub fn iter(&self) -> impl Iterator<Item = &Multiaddr>
[src]
Returns an iterator over the addresses.
pub fn len(&self) -> usize
[src]
Returns the number of addresses in the list.
pub fn into_vec(self) -> Vec<Multiaddr>
[src]
Converts the addresses into a Vec
.
pub fn remove(&mut self, addr: &Multiaddr) -> Result<(), ()>
[src]
Removes the given address from the list.
Returns Ok(())
if the address is either not in the list or was found and
removed. Returns Err(())
if the address is the last remaining address,
which cannot be removed.
An address should only be removed if is determined to be invalid or otherwise unreachable.
pub fn insert(&mut self, addr: Multiaddr) -> bool
[src]
Adds a new address to the end of the list.
Returns true if the address was added, false otherwise (i.e. if the address is already in the list).
pub fn replace(&mut self, old: &Multiaddr, new: &Multiaddr) -> bool
[src]
Replaces an old address with a new address.
Returns true if the previous address was found and replaced with a clone of the new address, returns false otherwise.