Struct libp2p::identify::Identify [−][src]
pub struct Identify { /* fields omitted */ }
Network behaviour that automatically identifies nodes periodically, returns information about them, and answers identify queries from other nodes.
All external addresses of the local node supposedly observed by remotes
are reported via NetworkBehaviourAction::ReportObservedAddr
with a
score of 1
.
Implementations
impl Identify
[src]
impl Identify
[src]Trait Implementations
impl NetworkBehaviour for Identify
[src]
impl NetworkBehaviour for Identify
[src]type ProtocolsHandler = IdentifyHandler
Handler for all the protocols the network behaviour supports.
type OutEvent = IdentifyEvent
Event generated by the NetworkBehaviour
and that the swarm will report back.
pub fn new_handler(
&mut self
) -> <Identify as NetworkBehaviour>::ProtocolsHandler
[src]
&mut self
) -> <Identify as NetworkBehaviour>::ProtocolsHandler
pub fn addresses_of_peer(&mut self, &PeerId) -> Vec<Multiaddr, Global>
[src]
pub fn inject_connected(&mut self, &PeerId)
[src]
pub fn inject_connection_established(
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
endpoint: &ConnectedPoint
)
[src]
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
endpoint: &ConnectedPoint
)
pub fn inject_connection_closed(
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
&ConnectedPoint
)
[src]
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
&ConnectedPoint
)
pub fn inject_disconnected(&mut self, peer_id: &PeerId)
[src]
pub fn inject_event(
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <<Identify as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::OutEvent
)
[src]
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <<Identify as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::OutEvent
)
pub fn poll(
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<<Identify as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::InEvent, <Identify as NetworkBehaviour>::OutEvent>>
[src]
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<<Identify as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::InEvent, <Identify as NetworkBehaviour>::OutEvent>>
pub fn inject_address_change(
&mut self,
&PeerId,
&ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
[src]
&mut self,
&PeerId,
&ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
pub fn inject_addr_reach_failure(
&mut self,
_peer_id: Option<&PeerId>,
_addr: &Multiaddr,
_error: &dyn Error
)
[src]
&mut self,
_peer_id: Option<&PeerId>,
_addr: &Multiaddr,
_error: &dyn Error
)
pub fn inject_dial_failure(&mut self, _peer_id: &PeerId)
[src]
pub fn inject_new_listen_addr(&mut self, _addr: &Multiaddr)
[src]
pub fn inject_expired_listen_addr(&mut self, _addr: &Multiaddr)
[src]
pub fn inject_new_external_addr(&mut self, _addr: &Multiaddr)
[src]
pub fn inject_listener_error(
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
[src]
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
pub fn inject_listener_closed(
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)
[src]
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)