Enum libp2p::core::connection::ConnectionHandlerEvent [−][src]
pub enum ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> { OutboundSubstreamRequest(TOutboundOpenInfo), Custom(TCustom), }
Event produced by a handler.
Variants
Require a new outbound substream to be opened with the remote.
Other event.
Implementations
impl<TOutboundOpenInfo, TCustom> ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
[src]
impl<TOutboundOpenInfo, TCustom> ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
[src]Event produced by a handler.
pub fn map_outbound_open_info<F, I>(
self,
map: F
) -> ConnectionHandlerEvent<I, TCustom> where
F: FnOnce(TOutboundOpenInfo) -> I,
[src]
self,
map: F
) -> ConnectionHandlerEvent<I, TCustom> where
F: FnOnce(TOutboundOpenInfo) -> I,
If this is OutboundSubstreamRequest
, maps the content to something else.
pub fn map_custom<F, I>(
self,
map: F
) -> ConnectionHandlerEvent<TOutboundOpenInfo, I> where
F: FnOnce(TCustom) -> I,
[src]
self,
map: F
) -> ConnectionHandlerEvent<TOutboundOpenInfo, I> where
F: FnOnce(TCustom) -> I,
If this is Custom
, maps the content to something else.
Trait Implementations
impl<TOutboundOpenInfo, TCustom> Clone for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TOutboundOpenInfo: Clone,
TCustom: Clone,
[src]
impl<TOutboundOpenInfo, TCustom> Clone for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TOutboundOpenInfo: Clone,
TCustom: Clone,
[src]pub fn clone(&self) -> ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<TOutboundOpenInfo, TCustom> Debug for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TOutboundOpenInfo: Debug,
TCustom: Debug,
[src]
impl<TOutboundOpenInfo, TCustom> Debug for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TOutboundOpenInfo: Debug,
TCustom: Debug,
[src]impl<TOutboundOpenInfo, TCustom> PartialEq<ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>> for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TOutboundOpenInfo: PartialEq<TOutboundOpenInfo>,
TCustom: PartialEq<TCustom>,
[src]
impl<TOutboundOpenInfo, TCustom> PartialEq<ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>> for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TOutboundOpenInfo: PartialEq<TOutboundOpenInfo>,
TCustom: PartialEq<TCustom>,
[src]pub fn eq(
&self,
other: &ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
) -> bool
[src]
&self,
other: &ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
) -> bool
pub fn ne(
&self,
other: &ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
) -> bool
[src]
&self,
other: &ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
) -> bool
impl<TOutboundOpenInfo, TCustom> Copy for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TOutboundOpenInfo: Copy,
TCustom: Copy,
[src]
TOutboundOpenInfo: Copy,
TCustom: Copy,
impl<TOutboundOpenInfo, TCustom> Eq for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TOutboundOpenInfo: Eq,
TCustom: Eq,
[src]
TOutboundOpenInfo: Eq,
TCustom: Eq,
impl<TOutboundOpenInfo, TCustom> StructuralEq for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
[src]
impl<TOutboundOpenInfo, TCustom> StructuralPartialEq for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom>
[src]
Auto Trait Implementations
impl<TOutboundOpenInfo, TCustom> RefUnwindSafe for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TCustom: RefUnwindSafe,
TOutboundOpenInfo: RefUnwindSafe,
TCustom: RefUnwindSafe,
TOutboundOpenInfo: RefUnwindSafe,
impl<TOutboundOpenInfo, TCustom> Send for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TCustom: Send,
TOutboundOpenInfo: Send,
TCustom: Send,
TOutboundOpenInfo: Send,
impl<TOutboundOpenInfo, TCustom> Sync for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TCustom: Sync,
TOutboundOpenInfo: Sync,
TCustom: Sync,
TOutboundOpenInfo: Sync,
impl<TOutboundOpenInfo, TCustom> Unpin for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TCustom: Unpin,
TOutboundOpenInfo: Unpin,
TCustom: Unpin,
TOutboundOpenInfo: Unpin,
impl<TOutboundOpenInfo, TCustom> UnwindSafe for ConnectionHandlerEvent<TOutboundOpenInfo, TCustom> where
TCustom: UnwindSafe,
TOutboundOpenInfo: UnwindSafe,
TCustom: UnwindSafe,
TOutboundOpenInfo: UnwindSafe,