Struct libp2p::simple::SimpleProtocol [−][src]
pub struct SimpleProtocol<F> { /* fields omitted */ }
Implementation of ConnectionUpgrade
. Convenient to use with small protocols.
Implementations
impl<F> SimpleProtocol<F>
[src]
impl<F> SimpleProtocol<F>
[src]pub fn new<N>(info: N, upgrade: F) -> SimpleProtocol<F> where
N: Into<Bytes>,
[src]
N: Into<Bytes>,
Builds a SimpleProtocol
.
Trait Implementations
impl<F> Clone for SimpleProtocol<F>
[src]
impl<F> Clone for SimpleProtocol<F>
[src]fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<C, F, O, A, E> InboundUpgrade<C> for SimpleProtocol<F> where
C: AsyncRead + AsyncWrite,
F: Fn(C) -> O,
O: Future<Output = Result<A, E>>,
[src]
impl<C, F, O, A, E> InboundUpgrade<C> for SimpleProtocol<F> where
C: AsyncRead + AsyncWrite,
F: Fn(C) -> O,
O: Future<Output = Result<A, E>>,
[src]impl<C, F, O, A, E> OutboundUpgrade<C> for SimpleProtocol<F> where
C: AsyncRead + AsyncWrite,
F: Fn(C) -> O,
O: Future<Output = Result<A, E>>,
[src]
impl<C, F, O, A, E> OutboundUpgrade<C> for SimpleProtocol<F> where
C: AsyncRead + AsyncWrite,
F: Fn(C) -> O,
O: Future<Output = Result<A, E>>,
[src]impl<F> UpgradeInfo for SimpleProtocol<F>
[src]
impl<F> UpgradeInfo for SimpleProtocol<F>
[src]Auto Trait Implementations
impl<F> RefUnwindSafe for SimpleProtocol<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
impl<F> Send for SimpleProtocol<F> where
F: Send + Sync,
F: Send + Sync,
impl<F> Sync for SimpleProtocol<F> where
F: Send + Sync,
F: Send + Sync,
impl<F> Unpin for SimpleProtocol<F>
impl<F> UnwindSafe for SimpleProtocol<F> where
F: RefUnwindSafe,
F: RefUnwindSafe,
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,