Struct libp2p_core::upgrade::SelectUpgrade
source · pub struct SelectUpgrade<A, B>(/* private fields */);
Expand description
Upgrade that combines two upgrades into one. Supports all the protocols supported by either sub-upgrade.
The protocols supported by the first element have a higher priority.
Implementations§
source§impl<A, B> SelectUpgrade<A, B>
impl<A, B> SelectUpgrade<A, B>
Trait Implementations§
source§impl<A: Clone, B: Clone> Clone for SelectUpgrade<A, B>
impl<A: Clone, B: Clone> Clone for SelectUpgrade<A, B>
source§fn clone(&self) -> SelectUpgrade<A, B>
fn clone(&self) -> SelectUpgrade<A, B>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<C, A, B, TA, TB, EA, EB> InboundConnectionUpgrade<C> for SelectUpgrade<A, B>where
A: InboundConnectionUpgrade<C, Output = TA, Error = EA>,
B: InboundConnectionUpgrade<C, Output = TB, Error = EB>,
impl<C, A, B, TA, TB, EA, EB> InboundConnectionUpgrade<C> for SelectUpgrade<A, B>where
A: InboundConnectionUpgrade<C, Output = TA, Error = EA>,
B: InboundConnectionUpgrade<C, Output = TB, Error = EB>,
§type Output = Either<TA, TB>
type Output = Either<TA, TB>
Output after the upgrade has been successfully negotiated and the handshake performed.
§type Future = EitherFuture<<A as InboundConnectionUpgrade<C>>::Future, <B as InboundConnectionUpgrade<C>>::Future>
type Future = EitherFuture<<A as InboundConnectionUpgrade<C>>::Future, <B as InboundConnectionUpgrade<C>>::Future>
Future that performs the handshake with the remote.
source§impl<C, A, B, TA, TB, EA, EB> InboundUpgrade<C> for SelectUpgrade<A, B>where
A: InboundUpgrade<C, Output = TA, Error = EA>,
B: InboundUpgrade<C, Output = TB, Error = EB>,
impl<C, A, B, TA, TB, EA, EB> InboundUpgrade<C> for SelectUpgrade<A, B>where
A: InboundUpgrade<C, Output = TA, Error = EA>,
B: InboundUpgrade<C, Output = TB, Error = EB>,
§type Output = Either<TA, TB>
type Output = Either<TA, TB>
Output after the upgrade has been successfully negotiated and the handshake performed.
§type Future = EitherFuture<<A as InboundUpgrade<C>>::Future, <B as InboundUpgrade<C>>::Future>
type Future = EitherFuture<<A as InboundUpgrade<C>>::Future, <B as InboundUpgrade<C>>::Future>
Future that performs the handshake with the remote.
source§impl<C, A, B, TA, TB, EA, EB> OutboundConnectionUpgrade<C> for SelectUpgrade<A, B>where
A: OutboundConnectionUpgrade<C, Output = TA, Error = EA>,
B: OutboundConnectionUpgrade<C, Output = TB, Error = EB>,
impl<C, A, B, TA, TB, EA, EB> OutboundConnectionUpgrade<C> for SelectUpgrade<A, B>where
A: OutboundConnectionUpgrade<C, Output = TA, Error = EA>,
B: OutboundConnectionUpgrade<C, Output = TB, Error = EB>,
§type Output = Either<TA, TB>
type Output = Either<TA, TB>
Output after the upgrade has been successfully negotiated and the handshake performed.
§type Future = EitherFuture<<A as OutboundConnectionUpgrade<C>>::Future, <B as OutboundConnectionUpgrade<C>>::Future>
type Future = EitherFuture<<A as OutboundConnectionUpgrade<C>>::Future, <B as OutboundConnectionUpgrade<C>>::Future>
Future that performs the handshake with the remote.
source§impl<C, A, B, TA, TB, EA, EB> OutboundUpgrade<C> for SelectUpgrade<A, B>where
A: OutboundUpgrade<C, Output = TA, Error = EA>,
B: OutboundUpgrade<C, Output = TB, Error = EB>,
impl<C, A, B, TA, TB, EA, EB> OutboundUpgrade<C> for SelectUpgrade<A, B>where
A: OutboundUpgrade<C, Output = TA, Error = EA>,
B: OutboundUpgrade<C, Output = TB, Error = EB>,
§type Output = Either<TA, TB>
type Output = Either<TA, TB>
Output after the upgrade has been successfully negotiated and the handshake performed.
§type Future = EitherFuture<<A as OutboundUpgrade<C>>::Future, <B as OutboundUpgrade<C>>::Future>
type Future = EitherFuture<<A as OutboundUpgrade<C>>::Future, <B as OutboundUpgrade<C>>::Future>
Future that performs the handshake with the remote.
source§impl<A, B> UpgradeInfo for SelectUpgrade<A, B>where
A: UpgradeInfo,
B: UpgradeInfo,
impl<A, B> UpgradeInfo for SelectUpgrade<A, B>where
A: UpgradeInfo,
B: UpgradeInfo,
§type Info = Either<<A as UpgradeInfo>::Info, <B as UpgradeInfo>::Info>
type Info = Either<<A as UpgradeInfo>::Info, <B as UpgradeInfo>::Info>
Opaque type representing a negotiable protocol.
§type InfoIter = Chain<Map<<<A as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter, fn(_: <A as UpgradeInfo>::Info) -> <SelectUpgrade<A, B> as UpgradeInfo>::Info>, Map<<<B as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter, fn(_: <B as UpgradeInfo>::Info) -> <SelectUpgrade<A, B> as UpgradeInfo>::Info>>
type InfoIter = Chain<Map<<<A as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter, fn(_: <A as UpgradeInfo>::Info) -> <SelectUpgrade<A, B> as UpgradeInfo>::Info>, Map<<<B as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter, fn(_: <B as UpgradeInfo>::Info) -> <SelectUpgrade<A, B> as UpgradeInfo>::Info>>
Iterator returned by
protocol_info
.source§fn protocol_info(&self) -> Self::InfoIter
fn protocol_info(&self) -> Self::InfoIter
Returns the list of protocols that are supported. Used during the negotiation process.
Auto Trait Implementations§
impl<A, B> RefUnwindSafe for SelectUpgrade<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for SelectUpgrade<A, B>
impl<A, B> Sync for SelectUpgrade<A, B>
impl<A, B> Unpin for SelectUpgrade<A, B>
impl<A, B> UnwindSafe for SelectUpgrade<A, B>where
A: UnwindSafe,
B: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more