Struct libp2p_relay::Relay [−][src]
Network behaviour allowing the local node to act as a source, a relay and a destination.
Trait Implementations
impl NetworkBehaviour for Relay
[src]
type ProtocolsHandler = RelayHandlerProto
Handler for all the protocols the network behaviour supports.
type OutEvent = ()
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, remote_peer_id: &PeerId) -> Vec<Multiaddr>
[src]
fn inject_connection_established(
&mut self,
peer: &PeerId,
connection_id: &ConnectionId,
_: &ConnectedPoint
)
[src]
&mut self,
peer: &PeerId,
connection_id: &ConnectionId,
_: &ConnectedPoint
)
fn inject_connected(&mut self, peer_id: &PeerId)
[src]
fn inject_dial_failure(&mut self, peer_id: &PeerId)
[src]
fn inject_connection_closed(
&mut self,
peer: &PeerId,
connection: &ConnectionId,
_: &ConnectedPoint
)
[src]
&mut self,
peer: &PeerId,
connection: &ConnectionId,
_: &ConnectedPoint
)
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
)
fn inject_listener_error(
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
[src]
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
fn inject_listener_closed(
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)
[src]
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)
fn inject_disconnected(&mut self, id: &PeerId)
[src]
fn inject_event(
&mut self,
event_source: PeerId,
connection: ConnectionId,
event: RelayHandlerEvent
)
[src]
&mut self,
event_source: PeerId,
connection: ConnectionId,
event: RelayHandlerEvent
)
fn poll(
&mut self,
cx: &mut Context<'_>,
poll_parameters: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<RelayHandlerIn, Self::OutEvent>>
[src]
&mut self,
cx: &mut Context<'_>,
poll_parameters: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<RelayHandlerIn, 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_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]
Auto Trait Implementations
impl !RefUnwindSafe for Relay
impl Send for Relay
impl !Sync for Relay
impl Unpin for Relay
impl !UnwindSafe for Relay
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>,