logo
pub trait PollParameters {
    type SupportedProtocolsIter: ExactSizeIterator
    where
        <Self::SupportedProtocolsIter as Iterator>::Item == Vec<u8, Global>
; type ListenedAddressesIter: ExactSizeIterator
    where
        <Self::ListenedAddressesIter as Iterator>::Item == Multiaddr
; type ExternalAddressesIter: ExactSizeIterator
    where
        <Self::ExternalAddressesIter as Iterator>::Item == AddressRecord
; fn supported_protocols(&self) -> Self::SupportedProtocolsIter; fn listened_addresses(&self) -> Self::ListenedAddressesIter; fn external_addresses(&self) -> Self::ExternalAddressesIter; fn local_peer_id(&self) -> &PeerId; }
Expand description

Parameters passed to poll(), that the NetworkBehaviour has access to.

Associated Types

Required methods

Returns the list of protocol the behaviour supports when a remote negotiates a protocol on an inbound substream.

The iterator’s elements are the ASCII names as reported on the wire.

Note that the list is computed once at initialization and never refreshed.

Returns the list of the addresses we’re listening on.

Returns the list of the addresses nodes can use to reach us.

Returns the peer id of the local node.

Implementors