Struct libp2p_core::upgrade::MapOutboundUpgrade [−][src]
pub struct MapOutboundUpgrade<U, F> { /* fields omitted */ }
Wraps around an upgrade and applies a closure to the output.
Implementations
Trait Implementations
impl<U: Clone, F: Clone> Clone for MapOutboundUpgrade<U, F>
[src]
impl<U: Clone, F: Clone> Clone for MapOutboundUpgrade<U, F>
[src]fn clone(&self) -> MapOutboundUpgrade<U, F>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<U: Debug, F: Debug> Debug for MapOutboundUpgrade<U, F>
[src]
impl<U: Debug, F: Debug> Debug for MapOutboundUpgrade<U, F>
[src]impl<C, U, F> InboundUpgrade<C> for MapOutboundUpgrade<U, F> where
U: InboundUpgrade<C>,
[src]
impl<C, U, F> InboundUpgrade<C> for MapOutboundUpgrade<U, F> where
U: InboundUpgrade<C>,
[src]type Output = U::Output
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = U::Error
Possible error during the handshake.
type Future = U::Future
Future that performs the handshake with the remote.
fn upgrade_inbound(self, sock: C, info: Self::Info) -> Self::Future
[src]
impl<C, U, F, T> OutboundUpgrade<C> for MapOutboundUpgrade<U, F> where
U: OutboundUpgrade<C>,
F: FnOnce(U::Output) -> T,
[src]
impl<C, U, F, T> OutboundUpgrade<C> for MapOutboundUpgrade<U, F> where
U: OutboundUpgrade<C>,
F: FnOnce(U::Output) -> T,
[src]type Output = T
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = U::Error
Possible error during the handshake.
type Future = MapFuture<U::Future, F>
Future that performs the handshake with the remote.
fn upgrade_outbound(self, sock: C, info: Self::Info) -> Self::Future
[src]
impl<U, F> UpgradeInfo for MapOutboundUpgrade<U, F> where
U: UpgradeInfo,
[src]
impl<U, F> UpgradeInfo for MapOutboundUpgrade<U, F> where
U: UpgradeInfo,
[src]Auto Trait Implementations
impl<U, F> RefUnwindSafe for MapOutboundUpgrade<U, F> where
F: RefUnwindSafe,
U: RefUnwindSafe,
F: RefUnwindSafe,
U: RefUnwindSafe,
impl<U, F> Send for MapOutboundUpgrade<U, F> where
F: Send,
U: Send,
F: Send,
U: Send,
impl<U, F> Sync for MapOutboundUpgrade<U, F> where
F: Sync,
U: Sync,
F: Sync,
U: Sync,
impl<U, F> Unpin for MapOutboundUpgrade<U, F> where
F: Unpin,
U: Unpin,
F: Unpin,
U: Unpin,
impl<U, F> UnwindSafe for MapOutboundUpgrade<U, F> where
F: UnwindSafe,
U: UnwindSafe,
F: UnwindSafe,
U: UnwindSafe,
Blanket Implementations
impl<C, U> InboundUpgradeExt<C> for U where
U: InboundUpgrade<C>,
[src]
impl<C, U> InboundUpgradeExt<C> for U where
U: InboundUpgrade<C>,
[src]fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F> where
Self: Sized,
F: FnOnce(Self::Output) -> T,
[src]
Self: Sized,
F: FnOnce(Self::Output) -> T,
fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
Self: Sized,
F: FnOnce(Self::Error) -> T,
[src]
Self: Sized,
F: FnOnce(Self::Error) -> T,
impl<C, U> OutboundUpgradeExt<C> for U where
U: OutboundUpgrade<C>,
[src]
impl<C, U> OutboundUpgradeExt<C> for U where
U: OutboundUpgrade<C>,
[src]fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F> where
Self: Sized,
F: FnOnce(Self::Output) -> T,
[src]
Self: Sized,
F: FnOnce(Self::Output) -> T,
fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
Self: Sized,
F: FnOnce(Self::Error) -> T,
[src]
Self: Sized,
F: FnOnce(Self::Error) -> T,