pub struct DeniedUpgrade;Expand description
Dummy implementation of UpgradeInfo/InboundUpgrade/OutboundUpgrade that doesn’t support
any protocol.
Trait Implementations§
Source§impl Clone for DeniedUpgrade
impl Clone for DeniedUpgrade
Source§fn clone(&self) -> DeniedUpgrade
fn clone(&self) -> DeniedUpgrade
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeniedUpgrade
impl Debug for DeniedUpgrade
Source§impl<C> InboundUpgrade<C> for DeniedUpgrade
impl<C> InboundUpgrade<C> for DeniedUpgrade
Source§type Output = Infallible
type Output = Infallible
Output after the upgrade has been successfully negotiated and the handshake performed.
Source§type Error = Infallible
type Error = Infallible
Possible error during the handshake.
Source§type Future = Pending<Result<<DeniedUpgrade as InboundUpgrade<C>>::Output, <DeniedUpgrade as InboundUpgrade<C>>::Error>>
type Future = Pending<Result<<DeniedUpgrade as InboundUpgrade<C>>::Output, <DeniedUpgrade as InboundUpgrade<C>>::Error>>
Future that performs the handshake with the remote.
Source§impl<C> OutboundUpgrade<C> for DeniedUpgrade
impl<C> OutboundUpgrade<C> for DeniedUpgrade
Source§type Output = Infallible
type Output = Infallible
Output after the upgrade has been successfully negotiated and the handshake performed.
Source§type Error = Infallible
type Error = Infallible
Possible error during the handshake.
Source§type Future = Pending<Result<<DeniedUpgrade as OutboundUpgrade<C>>::Output, <DeniedUpgrade as OutboundUpgrade<C>>::Error>>
type Future = Pending<Result<<DeniedUpgrade as OutboundUpgrade<C>>::Output, <DeniedUpgrade as OutboundUpgrade<C>>::Error>>
Future that performs the handshake with the remote.
Source§impl UpgradeInfo for DeniedUpgrade
impl UpgradeInfo for DeniedUpgrade
Source§type InfoIter = Empty<<DeniedUpgrade as UpgradeInfo>::Info>
type InfoIter = Empty<<DeniedUpgrade 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.
impl Copy for DeniedUpgrade
Auto Trait Implementations§
impl Freeze for DeniedUpgrade
impl RefUnwindSafe for DeniedUpgrade
impl Send for DeniedUpgrade
impl Sync for DeniedUpgrade
impl Unpin for DeniedUpgrade
impl UnwindSafe for DeniedUpgrade
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> 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