Struct libp2p_swarm::toggle::Toggle [−][src]
pub struct Toggle<TBehaviour> { /* fields omitted */ }
Implementation of NetworkBehaviour
that can be either in the disabled or enabled state.
The state can only be chosen at initialization.
Implementations
impl<TBehaviour> Toggle<TBehaviour>
[src]
impl<TBehaviour> Toggle<TBehaviour>
[src]pub fn is_enabled(&self) -> bool
[src]
Returns true
if Toggle
is enabled and false
if it’s disabled.
pub fn as_ref(&self) -> Option<&TBehaviour>
[src]
Returns a reference to the inner NetworkBehaviour
.
pub fn as_mut(&mut self) -> Option<&mut TBehaviour>
[src]
Returns a mutable reference to the inner NetworkBehaviour
.
Trait Implementations
impl<TBehaviour> NetworkBehaviour for Toggle<TBehaviour> where
TBehaviour: NetworkBehaviour,
[src]
impl<TBehaviour> NetworkBehaviour for Toggle<TBehaviour> where
TBehaviour: NetworkBehaviour,
[src]type ProtocolsHandler = ToggleIntoProtoHandler<TBehaviour::ProtocolsHandler>
Handler for all the protocols the network behaviour supports.
type OutEvent = TBehaviour::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, peer_id: &PeerId) -> Vec<Multiaddr>
[src]
fn inject_connected(&mut self, peer_id: &PeerId)
[src]
fn inject_disconnected(&mut self, peer_id: &PeerId)
[src]
fn inject_connection_established(
&mut self,
peer_id: &PeerId,
connection: &ConnectionId,
endpoint: &ConnectedPoint
)
[src]
&mut self,
peer_id: &PeerId,
connection: &ConnectionId,
endpoint: &ConnectedPoint
)
fn inject_connection_closed(
&mut self,
peer_id: &PeerId,
connection: &ConnectionId,
endpoint: &ConnectedPoint
)
[src]
&mut self,
peer_id: &PeerId,
connection: &ConnectionId,
endpoint: &ConnectedPoint
)
fn inject_event(
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <<Self::ProtocolsHandler as IntoProtocolsHandler>::Handler as ProtocolsHandler>::OutEvent
)
[src]
&mut self,
peer_id: PeerId,
connection: ConnectionId,
event: <<Self::ProtocolsHandler as IntoProtocolsHandler>::Handler as ProtocolsHandler>::OutEvent
)
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_dial_failure(&mut self, peer_id: &PeerId)
[src]
fn inject_new_listen_addr(&mut self, addr: &Multiaddr)
[src]
fn inject_expired_listen_addr(&mut self, addr: &Multiaddr)
[src]
fn inject_new_external_addr(&mut self, addr: &Multiaddr)
[src]
fn poll(
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<<Self::ProtocolsHandler as IntoProtocolsHandler>::Handler as ProtocolsHandler>::InEvent, Self::OutEvent>>
[src]
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<<Self::ProtocolsHandler as IntoProtocolsHandler>::Handler as ProtocolsHandler>::InEvent, Self::OutEvent>>
fn inject_address_change(
&mut self,
_: &PeerId,
_: &ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
[src]
&mut self,
_: &PeerId,
_: &ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
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>
)
impl<TEvent, TBehaviour> NetworkBehaviourEventProcess<TEvent> for Toggle<TBehaviour> where
TBehaviour: NetworkBehaviourEventProcess<TEvent>,
[src]
impl<TEvent, TBehaviour> NetworkBehaviourEventProcess<TEvent> for Toggle<TBehaviour> where
TBehaviour: NetworkBehaviourEventProcess<TEvent>,
[src]fn inject_event(&mut self, event: TEvent)
[src]
Auto Trait Implementations
impl<TBehaviour> RefUnwindSafe for Toggle<TBehaviour> where
TBehaviour: RefUnwindSafe,
TBehaviour: RefUnwindSafe,
impl<TBehaviour> Send for Toggle<TBehaviour> where
TBehaviour: Send,
TBehaviour: Send,
impl<TBehaviour> Sync for Toggle<TBehaviour> where
TBehaviour: Sync,
TBehaviour: Sync,
impl<TBehaviour> Unpin for Toggle<TBehaviour> where
TBehaviour: Unpin,
TBehaviour: Unpin,
impl<TBehaviour> UnwindSafe for Toggle<TBehaviour> where
TBehaviour: UnwindSafe,
TBehaviour: UnwindSafe,