Struct 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> Clone for FromFnUpgrade<P, F> where
F: Clone,
P: Clone,
[src]pub fn clone(&self) -> FromFnUpgrade<P, F>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<P, F> Debug for FromFnUpgrade<P, F> where
F: Debug,
P: Debug,
[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]
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.
pub fn upgrade_inbound(
self,
sock: C,
<FromFnUpgrade<P, F> as UpgradeInfo>::Info
) -> <FromFnUpgrade<P, F> as InboundUpgrade<C>>::Future
[src]
self,
sock: C,
<FromFnUpgrade<P, F> as UpgradeInfo>::Info
) -> <FromFnUpgrade<P, F> as InboundUpgrade<C>>::Future
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]
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.
pub fn upgrade_outbound(
self,
sock: C,
<FromFnUpgrade<P, F> as UpgradeInfo>::Info
) -> <FromFnUpgrade<P, F> as OutboundUpgrade<C>>::Future
[src]
self,
sock: C,
<FromFnUpgrade<P, F> as UpgradeInfo>::Info
) -> <FromFnUpgrade<P, F> as OutboundUpgrade<C>>::Future
impl<P, F> UpgradeInfo for FromFnUpgrade<P, F> where
P: ProtocolName + Clone,
[src]
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
.
pub fn protocol_info(&self) -> <FromFnUpgrade<P, F> as UpgradeInfo>::InfoIter
[src]
Auto Trait Implementations
impl<P, F> RefUnwindSafe for FromFnUpgrade<P, F> where
F: RefUnwindSafe,
P: RefUnwindSafe,
F: RefUnwindSafe,
P: RefUnwindSafe,
impl<P, F> Send for FromFnUpgrade<P, F> where
F: Send,
P: Send,
F: Send,
P: Send,
impl<P, F> Sync for FromFnUpgrade<P, F> where
F: Sync,
P: Sync,
F: Sync,
P: Sync,
impl<P, F> Unpin for FromFnUpgrade<P, F> where
F: Unpin,
P: Unpin,
F: Unpin,
P: Unpin,
impl<P, F> UnwindSafe for FromFnUpgrade<P, F> where
F: UnwindSafe,
P: UnwindSafe,
F: UnwindSafe,
P: 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,