[][src]Struct libp2p_core::upgrade::MapOutboundUpgradeErr

pub struct MapOutboundUpgradeErr<U, F> { /* fields omitted */ }

Wraps around an upgrade and applies a closure to the error.

Methods

impl<U, F> MapOutboundUpgradeErr<U, F>
[src]

pub fn new(upgrade: U, fun: F) -> Self
[src]

Trait Implementations

impl<U, F> UpgradeInfo for MapOutboundUpgradeErr<U, F> where
    U: UpgradeInfo
[src]

type Info = U::Info

Opaque type representing a negotiable protocol.

type InfoIter = U::InfoIter

Iterator returned by protocol_info.

impl<C, U, F> InboundUpgrade<C> for MapOutboundUpgradeErr<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.

impl<C, U, F, T> OutboundUpgrade<C> for MapOutboundUpgradeErr<U, F> where
    U: OutboundUpgrade<C>,
    F: FnOnce(U::Error) -> T, 
[src]

type Output = U::Output

Output after the upgrade has been successfully negotiated and the handshake performed.

type Error = T

Possible error during the handshake.

type Future = MapErrFuture<U::Future, F>

Future that performs the handshake with the remote.

impl<U: Clone, F: Clone> Clone for MapOutboundUpgradeErr<U, F>
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<U: Debug, F: Debug> Debug for MapOutboundUpgradeErr<U, F>
[src]

Auto Trait Implementations

impl<U, F> Send for MapOutboundUpgradeErr<U, F> where
    F: Send,
    U: Send

impl<U, F> Sync for MapOutboundUpgradeErr<U, F> where
    F: Sync,
    U: Sync

Blanket Implementations

impl<C, U> InboundUpgradeExt 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]

Returns a new object that wraps around Self and applies a closure to the Output.

fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
    Self: Sized,
    F: FnOnce(Self::Error) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Error.

impl<C, U> OutboundUpgradeExt 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]

Returns a new object that wraps around Self and applies a closure to the Output.

fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
    Self: Sized,
    F: FnOnce(Self::Error) -> T, 
[src]

Returns a new object that wraps around Self and applies a closure to the Error.

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<T> Erased for T