Enum libp2p_core::upgrade::EitherUpgrade [−][src]
pub enum EitherUpgrade<A, B> { A(A), B(B), }
A type to represent two possible upgrade types (inbound or outbound).
Variants
Trait Implementations
impl<A: Clone, B: Clone> Clone for EitherUpgrade<A, B>
[src]
impl<A: Clone, B: Clone> Clone for EitherUpgrade<A, B>
[src]fn clone(&self) -> EitherUpgrade<A, B>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<A: Debug, B: Debug> Debug for EitherUpgrade<A, B>
[src]
impl<A: Debug, B: Debug> Debug for EitherUpgrade<A, B>
[src]impl<C, A, B, TA, TB, EA, EB> InboundUpgrade<C> for EitherUpgrade<A, B> where
A: InboundUpgrade<C, Output = TA, Error = EA>,
B: InboundUpgrade<C, Output = TB, Error = EB>,
[src]
impl<C, A, B, TA, TB, EA, EB> InboundUpgrade<C> for EitherUpgrade<A, B> where
A: InboundUpgrade<C, Output = TA, Error = EA>,
B: InboundUpgrade<C, Output = TB, Error = EB>,
[src]type Output = EitherOutput<TA, TB>
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = EitherError<EA, EB>
Possible error during the handshake.
type Future = EitherFuture2<A::Future, B::Future>
Future that performs the handshake with the remote.
fn upgrade_inbound(self, sock: C, info: Self::Info) -> Self::Future
[src]
impl<C, A, B, TA, TB, EA, EB> OutboundUpgrade<C> for EitherUpgrade<A, B> where
A: OutboundUpgrade<C, Output = TA, Error = EA>,
B: OutboundUpgrade<C, Output = TB, Error = EB>,
[src]
impl<C, A, B, TA, TB, EA, EB> OutboundUpgrade<C> for EitherUpgrade<A, B> where
A: OutboundUpgrade<C, Output = TA, Error = EA>,
B: OutboundUpgrade<C, Output = TB, Error = EB>,
[src]type Output = EitherOutput<TA, TB>
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = EitherError<EA, EB>
Possible error during the handshake.
type Future = EitherFuture2<A::Future, B::Future>
Future that performs the handshake with the remote.
fn upgrade_outbound(self, sock: C, info: Self::Info) -> Self::Future
[src]
impl<A, B> UpgradeInfo for EitherUpgrade<A, B> where
A: UpgradeInfo,
B: UpgradeInfo,
[src]
impl<A, B> UpgradeInfo for EitherUpgrade<A, B> where
A: UpgradeInfo,
B: UpgradeInfo,
[src]type Info = EitherName<A::Info, B::Info>
Opaque type representing a negotiable protocol.
type InfoIter = EitherIter<<A::InfoIter as IntoIterator>::IntoIter, <B::InfoIter as IntoIterator>::IntoIter>
Iterator returned by protocol_info
.
fn protocol_info(&self) -> Self::InfoIter
[src]
Auto Trait Implementations
impl<A, B> RefUnwindSafe for EitherUpgrade<A, B> where
A: RefUnwindSafe,
B: RefUnwindSafe,
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for EitherUpgrade<A, B> where
A: Send,
B: Send,
A: Send,
B: Send,
impl<A, B> Sync for EitherUpgrade<A, B> where
A: Sync,
B: Sync,
A: Sync,
B: Sync,
impl<A, B> Unpin for EitherUpgrade<A, B> where
A: Unpin,
B: Unpin,
A: Unpin,
B: Unpin,
impl<A, B> UnwindSafe for EitherUpgrade<A, B> where
A: UnwindSafe,
B: UnwindSafe,
A: UnwindSafe,
B: 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]fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F> where
Self: Sized,
F: FnOnce(Self::Output) -> T,
[src]
Self: Sized,
F: FnOnce(Self::Output) -> T,
fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
Self: Sized,
F: FnOnce(Self::Error) -> T,
[src]
Self: Sized,
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]fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F> where
Self: Sized,
F: FnOnce(Self::Output) -> T,
[src]
Self: Sized,
F: FnOnce(Self::Output) -> T,
fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
Self: Sized,
F: FnOnce(Self::Error) -> T,
[src]
Self: Sized,
F: FnOnce(Self::Error) -> T,