Struct libp2p_swarm::protocols_handler::multi::IntoMultiHandler [−][src]
pub struct IntoMultiHandler<K, H> { /* fields omitted */ }
A IntoProtocolsHandler
for multiple other IntoProtocolsHandler
s.
Implementations
impl<K, H> IntoMultiHandler<K, H> where
K: Hash + Eq,
H: IntoProtocolsHandler,
[src]
impl<K, H> IntoMultiHandler<K, H> where
K: Hash + Eq,
H: IntoProtocolsHandler,
[src]pub fn try_from_iter<I>(iter: I) -> Result<Self, DuplicateProtonameError> where
I: IntoIterator<Item = (K, H)>,
[src]
I: IntoIterator<Item = (K, H)>,
Create and populate an IntoMultiHandler
from the given iterator.
It is an error for any two protocols handlers to share the same protocol name.
Note: All handlers should use the same
upgrade::Version
for the inbound and outboundSubstreamProtocol
s.
Trait Implementations
impl<K: Clone, H: Clone> Clone for IntoMultiHandler<K, H>
[src]
impl<K: Clone, H: Clone> Clone for IntoMultiHandler<K, H>
[src]fn clone(&self) -> IntoMultiHandler<K, H>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<K, H> IntoProtocolsHandler for IntoMultiHandler<K, H> where
K: Clone + Eq + Hash + Send + 'static,
H: IntoProtocolsHandler,
[src]
impl<K, H> IntoProtocolsHandler for IntoMultiHandler<K, H> where
K: Clone + Eq + Hash + Send + 'static,
H: IntoProtocolsHandler,
[src]type Handler = MultiHandler<K, H::Handler>
The protocols handler.
fn into_handler(self, p: &PeerId, c: &ConnectedPoint) -> Self::Handler
[src]
fn inbound_protocol(
&self
) -> <Self::Handler as ProtocolsHandler>::InboundProtocol
[src]
&self
) -> <Self::Handler as ProtocolsHandler>::InboundProtocol
fn select<TProto2>(
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2> where
Self: Sized,
[src]
self,
other: TProto2
) -> IntoProtocolsHandlerSelect<Self, TProto2> where
Self: Sized,
fn into_node_handler_builder(self) -> NodeHandlerWrapperBuilder<Self> where
Self: Sized,
[src]
Self: Sized,
Auto Trait Implementations
impl<K, H> RefUnwindSafe for IntoMultiHandler<K, H> where
H: RefUnwindSafe,
K: RefUnwindSafe,
H: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, H> Send for IntoMultiHandler<K, H> where
H: Send,
K: Send,
H: Send,
K: Send,
impl<K, H> Sync for IntoMultiHandler<K, H> where
H: Sync,
K: Sync,
H: Sync,
K: Sync,
impl<K, H> Unpin for IntoMultiHandler<K, H> where
H: Unpin,
K: Unpin,
H: Unpin,
K: Unpin,
impl<K, H> UnwindSafe for IntoMultiHandler<K, H> where
H: UnwindSafe,
K: UnwindSafe,
H: UnwindSafe,
K: UnwindSafe,