Struct tetsy_libp2p::core::upgrade::FromFnUpgrade[][src]

pub struct FromFnUpgrade<P, F> { /* fields omitted */ }

Implements the UpgradeInfo, InboundUpgrade and OutboundUpgrade traits.

The upgrade consists in calling the function passed when creating this struct.

Trait Implementations

impl<P, F> Clone for FromFnUpgrade<P, F> where
    F: Clone,
    P: Clone
[src]

impl<P, F> Debug for FromFnUpgrade<P, F> where
    F: Debug,
    P: Debug
[src]

impl<C, P, F, Fut, Err, Out> InboundUpgrade<C> for FromFnUpgrade<P, F> where
    F: FnOnce(C, Endpoint) -> Fut,
    P: ProtocolName + Clone,
    Fut: Future<Output = Result<Out, Err>>, 
[src]

type Output = Out

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

type Error = Err

Possible error during the handshake.

type Future = Fut

Future that performs the handshake with the remote.

impl<C, P, F, Fut, Err, Out> OutboundUpgrade<C> for FromFnUpgrade<P, F> where
    F: FnOnce(C, Endpoint) -> Fut,
    P: ProtocolName + Clone,
    Fut: Future<Output = Result<Out, Err>>, 
[src]

type Output = Out

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

type Error = Err

Possible error during the handshake.

type Future = Fut

Future that performs the handshake with the remote.

impl<P, F> UpgradeInfo for FromFnUpgrade<P, F> where
    P: ProtocolName + Clone
[src]

type Info = P

Opaque type representing a negotiable protocol.

type InfoIter = Once<P>

Iterator returned by protocol_info.

Auto Trait Implementations

impl<P, F> RefUnwindSafe for FromFnUpgrade<P, F> where
    F: RefUnwindSafe,
    P: RefUnwindSafe

impl<P, F> Send for FromFnUpgrade<P, F> where
    F: Send,
    P: Send

impl<P, F> Sync for FromFnUpgrade<P, F> where
    F: Sync,
    P: Sync

impl<P, F> Unpin for FromFnUpgrade<P, F> where
    F: Unpin,
    P: Unpin

impl<P, F> UnwindSafe for FromFnUpgrade<P, F> where
    F: UnwindSafe,
    P: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<C, U> InboundUpgradeExt<C> for U where
    U: InboundUpgrade<C>, 
[src]

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

impl<C, U> OutboundUpgradeExt<C> for U where
    U: OutboundUpgrade<C>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,