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