Struct SelectUpgrade
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§
§impl<A, B> SelectUpgrade<A, B>
impl<A, B> SelectUpgrade<A, B>
pub fn new(a: A, b: B) -> SelectUpgrade<A, B>
pub fn new(a: A, b: B) -> SelectUpgrade<A, B>
Combines two upgrades into an SelectUpgrade
.
The protocols supported by the first element have a higher priority.
Trait Implementations§
§impl<A, B> Clone for SelectUpgrade<A, B>
impl<A, B> Clone for SelectUpgrade<A, B>
§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 more§impl<A, B> Debug for SelectUpgrade<A, B>
impl<A, B> Debug for SelectUpgrade<A, B>
§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.
§fn upgrade_inbound(
self,
sock: C,
info: <SelectUpgrade<A, B> as UpgradeInfo>::Info,
) -> <SelectUpgrade<A, B> as InboundConnectionUpgrade<C>>::Future
fn upgrade_inbound( self, sock: C, info: <SelectUpgrade<A, B> as UpgradeInfo>::Info, ) -> <SelectUpgrade<A, B> as InboundConnectionUpgrade<C>>::Future
After we have determined that the remote supports one of the protocols we support, this
method is called to start the handshake. Read more
§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.
§fn upgrade_inbound(
self,
sock: C,
info: <SelectUpgrade<A, B> as UpgradeInfo>::Info,
) -> <SelectUpgrade<A, B> as InboundUpgrade<C>>::Future
fn upgrade_inbound( self, sock: C, info: <SelectUpgrade<A, B> as UpgradeInfo>::Info, ) -> <SelectUpgrade<A, B> as InboundUpgrade<C>>::Future
After we have determined that the remote supports one of the protocols we support, this
method is called to start the handshake. Read more
§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.
§fn upgrade_outbound(
self,
sock: C,
info: <SelectUpgrade<A, B> as UpgradeInfo>::Info,
) -> <SelectUpgrade<A, B> as OutboundConnectionUpgrade<C>>::Future
fn upgrade_outbound( self, sock: C, info: <SelectUpgrade<A, B> as UpgradeInfo>::Info, ) -> <SelectUpgrade<A, B> as OutboundConnectionUpgrade<C>>::Future
After we have determined that the remote supports one of the protocols we support, this
method is called to start the handshake. Read more
§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.
§fn upgrade_outbound(
self,
sock: C,
info: <SelectUpgrade<A, B> as UpgradeInfo>::Info,
) -> <SelectUpgrade<A, B> as OutboundUpgrade<C>>::Future
fn upgrade_outbound( self, sock: C, info: <SelectUpgrade<A, B> as UpgradeInfo>::Info, ) -> <SelectUpgrade<A, B> as OutboundUpgrade<C>>::Future
After we have determined that the remote supports one of the protocols we support, this
method is called to start the handshake. Read more
§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
.§fn protocol_info(&self) -> <SelectUpgrade<A, B> as UpgradeInfo>::InfoIter
fn protocol_info(&self) -> <SelectUpgrade<A, B> as UpgradeInfo>::InfoIter
Returns the list of protocols that are supported. Used during the negotiation process.
Auto Trait Implementations§
impl<A, B> Freeze for SelectUpgrade<A, B>
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§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more