Struct libp2p_swarm::handler::multi::IntoMultiHandler
source · pub struct IntoMultiHandler<K, H> { /* private fields */ }
👎Deprecated: Use
MultiHandler
directly.Expand description
A IntoConnectionHandler
for multiple other IntoConnectionHandler
s.
Implementations§
source§impl<K, H> IntoMultiHandler<K, H>where
K: Hash + Eq,
H: IntoConnectionHandler,
impl<K, H> IntoMultiHandler<K, H>where K: Hash + Eq, H: IntoConnectionHandler,
sourcepub fn try_from_iter<I>(iter: I) -> Result<Self, DuplicateProtonameError>where
I: IntoIterator<Item = (K, H)>,
pub fn try_from_iter<I>(iter: I) -> Result<Self, DuplicateProtonameError>where 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.
Trait Implementations§
source§impl<K: Clone, H: Clone> Clone for IntoMultiHandler<K, H>
impl<K: Clone, H: Clone> Clone for IntoMultiHandler<K, H>
source§fn clone(&self) -> IntoMultiHandler<K, H>
fn clone(&self) -> IntoMultiHandler<K, H>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<K, H> IntoConnectionHandler for IntoMultiHandler<K, H>where
K: Debug + Clone + Eq + Hash + Send + 'static,
H: IntoConnectionHandler,
impl<K, H> IntoConnectionHandler for IntoMultiHandler<K, H>where K: Debug + Clone + Eq + Hash + Send + 'static, H: IntoConnectionHandler,
§type Handler = MultiHandler<K, <H as IntoConnectionHandler>::Handler>
type Handler = MultiHandler<K, <H as IntoConnectionHandler>::Handler>
👎Deprecated: Implement
ConnectionHandler
directly and use NetworkBehaviour::{handle_pending_inbound_connection,handle_pending_outbound_connection}
to handle pending connections.The protocols handler.
source§fn into_handler(self, p: &PeerId, c: &ConnectedPoint) -> Self::Handler
fn into_handler(self, p: &PeerId, c: &ConnectedPoint) -> Self::Handler
👎Deprecated: Implement
ConnectionHandler
directly and use NetworkBehaviour::{handle_pending_inbound_connection,handle_pending_outbound_connection}
to handle pending connections.Builds the protocols handler. Read more
source§fn inbound_protocol(
&self
) -> <Self::Handler as ConnectionHandler>::InboundProtocol
fn inbound_protocol( &self ) -> <Self::Handler as ConnectionHandler>::InboundProtocol
👎Deprecated: Implement
ConnectionHandler
directly and use NetworkBehaviour::{handle_pending_inbound_connection,handle_pending_outbound_connection}
to handle pending connections.Return the handler’s inbound protocol.
source§fn select<TProto2>(
self,
other: TProto2
) -> IntoConnectionHandlerSelect<Self, TProto2>where
Self: Sized,
fn select<TProto2>( self, other: TProto2 ) -> IntoConnectionHandlerSelect<Self, TProto2>where Self: Sized,
👎Deprecated: Implement
ConnectionHandler
directly and use NetworkBehaviour::{handle_pending_inbound_connection,handle_pending_outbound_connection}
to handle pending connections.Builds an implementation of
IntoConnectionHandler
that handles both this protocol and the
other one together.Auto Trait Implementations§
impl<K, H> RefUnwindSafe for IntoMultiHandler<K, H>where H: RefUnwindSafe, K: RefUnwindSafe,
impl<K, H> Send for IntoMultiHandler<K, H>where H: Send, K: Send,
impl<K, H> Sync for IntoMultiHandler<K, H>where H: Sync, K: Sync,
impl<K, H> Unpin for IntoMultiHandler<K, H>where H: Unpin, K: Unpin,
impl<K, H> UnwindSafe for IntoMultiHandler<K, H>where H: UnwindSafe, K: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more