Struct libp2p_identify::Identify [−][src]
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]
pub fn new(config: IdentifyConfig) -> Self
[src]
Creates a new Identify
network behaviour.
pub fn push<I>(&mut self, peers: I) where
I: IntoIterator<Item = PeerId>,
[src]
I: IntoIterator<Item = PeerId>,
Initiates an active push of the local peer information to the given peers.
Trait Implementations
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.
fn new_handler(&mut self) -> Self::ProtocolsHandler
[src]
fn addresses_of_peer(&mut self, _: &PeerId) -> Vec<Multiaddr>
[src]
fn inject_connected(&mut self, _: &PeerId)
[src]
fn inject_connection_established(
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
endpoint: &ConnectedPoint
)
[src]
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
endpoint: &ConnectedPoint
)
fn inject_connection_closed(
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
_: &ConnectedPoint
)
[src]
&mut self,
peer_id: &PeerId,
conn: &ConnectionId,
_: &ConnectedPoint
)
fn inject_dial_failure(&mut self, peer_id: &PeerId)
[src]
fn inject_disconnected(&mut self, peer_id: &PeerId)
[src]
fn inject_new_listen_addr(&mut self, _id: ListenerId, _addr: &Multiaddr)
[src]
fn inject_expired_listen_addr(&mut self, _id: ListenerId, _addr: &Multiaddr)
[src]
fn inject_event(
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <Self::ProtocolsHandler as ProtocolsHandler>::OutEvent
)
[src]
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <Self::ProtocolsHandler as ProtocolsHandler>::OutEvent
)
fn poll(
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<Self::ProtocolsHandler as ProtocolsHandler>::InEvent, Self::OutEvent>>
[src]
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<Self::ProtocolsHandler as ProtocolsHandler>::InEvent, Self::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_new_listener(&mut self, _id: ListenerId)
[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>
)
pub fn inject_new_external_addr(&mut self, _addr: &Multiaddr)
[src]
pub fn inject_expired_external_addr(&mut self, _addr: &Multiaddr)
[src]
Auto Trait Implementations
impl !RefUnwindSafe for Identify
impl Send for Identify
impl !Sync for Identify
impl Unpin for Identify
impl !UnwindSafe for Identify
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,