Struct libp2p_swarm::protocols_handler::multi::IntoMultiHandler   [−][src]
A IntoProtocolsHandler for multiple other IntoProtocolsHandlers.
Implementations
impl<K, H> IntoMultiHandler<K, H> where
    K: Hash + Eq,
    H: IntoProtocolsHandler, [src]
K: Hash + Eq,
H: IntoProtocolsHandler,
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::Versionfor the inbound and outboundSubstreamProtocols.
Trait Implementations
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> Debug for IntoMultiHandler<K, H> where
    K: Debug + Eq + Hash,
    H: Debug, [src]
K: Debug + Eq + Hash,
H: Debug,
impl<K, H> IntoProtocolsHandler for IntoMultiHandler<K, H> where
    K: Clone + Eq + Hash + Send + 'static,
    H: IntoProtocolsHandler, [src]
K: Clone + Eq + Hash + Send + 'static,
H: IntoProtocolsHandler,
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,
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, [src]
V: MultiLane<T>,