pub struct IntoMultiHandler<K, H> { /* private fields */ }
👎Deprecated: Use MultiHandler directly.
Expand description

A IntoConnectionHandler for multiple other IntoConnectionHandlers.

Implementations§

source§

impl<K, H> IntoMultiHandler<K, H>where K: Hash + Eq, H: IntoConnectionHandler,

source

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>

source§

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)

Performs copy-assignment from source. Read more
source§

impl<K, H> Debug for IntoMultiHandler<K, H>where K: Debug + Eq + Hash, H: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

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>

👎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

👎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

👎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,

👎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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V