Struct libp2p_swarm::protocols_handler::multi::Upgrade [−][src]
Inbound and outbound upgrade for all ProtocolsHandler
s.
Trait Implementations
impl<K: Clone, H: Clone> Clone for Upgrade<K, H>
[src]
impl<K, H> Debug for Upgrade<K, H> where
K: Debug + Eq + Hash,
H: Debug,
[src]
K: Debug + Eq + Hash,
H: Debug,
impl<K, H> InboundUpgradeSend for Upgrade<K, H> where
H: InboundUpgradeSend,
K: Send + 'static,
[src]
H: InboundUpgradeSend,
K: Send + 'static,
type Output = (K, <H as InboundUpgradeSend>::Output)
Equivalent to InboundUpgrade::Output
.
type Error = (K, <H as InboundUpgradeSend>::Error)
Equivalent to InboundUpgrade::Error
.
type Future = BoxFuture<'static, Result<Self::Output, Self::Error>>
Equivalent to InboundUpgrade::Future
.
fn upgrade_inbound(
self,
resource: NegotiatedSubstream,
info: Self::Info
) -> Self::Future
[src]
self,
resource: NegotiatedSubstream,
info: Self::Info
) -> Self::Future
impl<K, H> OutboundUpgradeSend for Upgrade<K, H> where
H: OutboundUpgradeSend,
K: Send + 'static,
[src]
H: OutboundUpgradeSend,
K: Send + 'static,
type Output = (K, <H as OutboundUpgradeSend>::Output)
Equivalent to OutboundUpgrade::Output
.
type Error = (K, <H as OutboundUpgradeSend>::Error)
Equivalent to OutboundUpgrade::Error
.
type Future = BoxFuture<'static, Result<Self::Output, Self::Error>>
Equivalent to OutboundUpgrade::Future
.
fn upgrade_outbound(
self,
resource: NegotiatedSubstream,
info: Self::Info
) -> Self::Future
[src]
self,
resource: NegotiatedSubstream,
info: Self::Info
) -> Self::Future
impl<K, H> UpgradeInfoSend for Upgrade<K, H> where
H: UpgradeInfoSend,
K: Send + 'static,
[src]
H: UpgradeInfoSend,
K: Send + 'static,
type Info = IndexedProtoName<H::Info>
Equivalent to UpgradeInfo::Info
.
type InfoIter = IntoIter<Self::Info>
Equivalent to UpgradeInfo::InfoIter
.
fn protocol_info(&self) -> Self::InfoIter
[src]
Auto Trait Implementations
impl<K, H> RefUnwindSafe for Upgrade<K, H> where
H: RefUnwindSafe,
K: RefUnwindSafe,
H: RefUnwindSafe,
K: RefUnwindSafe,
impl<K, H> Send for Upgrade<K, H> where
H: Send,
K: Send,
H: Send,
K: Send,
impl<K, H> Sync for Upgrade<K, H> where
H: Sync,
K: Sync,
H: Sync,
K: Sync,
impl<K, H> Unpin for Upgrade<K, H> where
H: Unpin,
K: Unpin,
H: Unpin,
K: Unpin,
impl<K, H> UnwindSafe for Upgrade<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>,