pub trait IdentifyTopology: Topology {
    fn add_identify_discovered_addrs<TIter>(&mut self, peer: &PeerId, addr: TIter)
    where
        TIter: Iterator<Item = Multiaddr>
; }
Expand description

Trait required on the topology for the identify system to store addresses.

Required Methods

Adds to the topology an address discovered through identification.

Note: Will never be called with the local peer ID.

Implementations on Foreign Types

Implementors