Struct DeniedUpgrade
pub struct DeniedUpgrade;
Expand description
Dummy implementation of UpgradeInfo
/InboundUpgrade
/OutboundUpgrade
that doesn’t support
any protocol.
Trait Implementations§
§impl Clone for DeniedUpgrade
impl Clone for DeniedUpgrade
§fn clone(&self) -> DeniedUpgrade
fn clone(&self) -> DeniedUpgrade
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 Debug for DeniedUpgrade
impl Debug for DeniedUpgrade
§impl<C> InboundUpgrade<C> for DeniedUpgrade
impl<C> InboundUpgrade<C> for DeniedUpgrade
§type Output = Void
type Output = Void
Output after the upgrade has been successfully negotiated and the handshake performed.
§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.
§fn upgrade_inbound(
self,
_: C,
_: <DeniedUpgrade as UpgradeInfo>::Info,
) -> <DeniedUpgrade as InboundUpgrade<C>>::Future
fn upgrade_inbound( self, _: C, _: <DeniedUpgrade as UpgradeInfo>::Info, ) -> <DeniedUpgrade 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> OutboundUpgrade<C> for DeniedUpgrade
impl<C> OutboundUpgrade<C> for DeniedUpgrade
§type Output = Void
type Output = Void
Output after the upgrade has been successfully negotiated and the handshake performed.
§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.
§fn upgrade_outbound(
self,
_: C,
_: <DeniedUpgrade as UpgradeInfo>::Info,
) -> <DeniedUpgrade as OutboundUpgrade<C>>::Future
fn upgrade_outbound( self, _: C, _: <DeniedUpgrade as UpgradeInfo>::Info, ) -> <DeniedUpgrade 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 UpgradeInfo for DeniedUpgrade
impl UpgradeInfo for DeniedUpgrade
§type InfoIter = Empty<<DeniedUpgrade as UpgradeInfo>::Info>
type InfoIter = Empty<<DeniedUpgrade as UpgradeInfo>::Info>
Iterator returned by
protocol_info
.§fn protocol_info(&self) -> <DeniedUpgrade as UpgradeInfo>::InfoIter
fn protocol_info(&self) -> <DeniedUpgrade as UpgradeInfo>::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§
§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, TInfo> InboundUpgradeSend for Twhere
T: InboundUpgrade<Stream, Info = TInfo> + UpgradeInfoSend<Info = TInfo>,
TInfo: AsRef<str> + Clone + Send + 'static,
<T as InboundUpgrade<Stream>>::Output: Send + 'static,
<T as InboundUpgrade<Stream>>::Error: Send + 'static,
<T as InboundUpgrade<Stream>>::Future: Send + 'static,
impl<T, TInfo> InboundUpgradeSend for Twhere
T: InboundUpgrade<Stream, Info = TInfo> + UpgradeInfoSend<Info = TInfo>,
TInfo: AsRef<str> + Clone + Send + 'static,
<T as InboundUpgrade<Stream>>::Output: Send + 'static,
<T as InboundUpgrade<Stream>>::Error: Send + 'static,
<T as InboundUpgrade<Stream>>::Future: Send + 'static,
§type Output = <T as InboundUpgrade<Stream>>::Output
type Output = <T as InboundUpgrade<Stream>>::Output
Equivalent to
InboundUpgrade::Output
.§type Error = <T as InboundUpgrade<Stream>>::Error
type Error = <T as InboundUpgrade<Stream>>::Error
Equivalent to
InboundUpgrade::Error
.§type Future = <T as InboundUpgrade<Stream>>::Future
type Future = <T as InboundUpgrade<Stream>>::Future
Equivalent to
InboundUpgrade::Future
.§fn upgrade_inbound(
self,
socket: Stream,
info: TInfo,
) -> <T as InboundUpgradeSend>::Future
fn upgrade_inbound( self, socket: Stream, info: TInfo, ) -> <T as InboundUpgradeSend>::Future
Equivalent to
InboundUpgrade::upgrade_inbound
.§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§impl<T, TInfo> OutboundUpgradeSend for Twhere
T: OutboundUpgrade<Stream, Info = TInfo> + UpgradeInfoSend<Info = TInfo>,
TInfo: AsRef<str> + Clone + Send + 'static,
<T as OutboundUpgrade<Stream>>::Output: Send + 'static,
<T as OutboundUpgrade<Stream>>::Error: Send + 'static,
<T as OutboundUpgrade<Stream>>::Future: Send + 'static,
impl<T, TInfo> OutboundUpgradeSend for Twhere
T: OutboundUpgrade<Stream, Info = TInfo> + UpgradeInfoSend<Info = TInfo>,
TInfo: AsRef<str> + Clone + Send + 'static,
<T as OutboundUpgrade<Stream>>::Output: Send + 'static,
<T as OutboundUpgrade<Stream>>::Error: Send + 'static,
<T as OutboundUpgrade<Stream>>::Future: Send + 'static,
§type Output = <T as OutboundUpgrade<Stream>>::Output
type Output = <T as OutboundUpgrade<Stream>>::Output
Equivalent to
OutboundUpgrade::Output
.§type Error = <T as OutboundUpgrade<Stream>>::Error
type Error = <T as OutboundUpgrade<Stream>>::Error
Equivalent to
OutboundUpgrade::Error
.§type Future = <T as OutboundUpgrade<Stream>>::Future
type Future = <T as OutboundUpgrade<Stream>>::Future
Equivalent to
OutboundUpgrade::Future
.§fn upgrade_outbound(
self,
socket: Stream,
info: TInfo,
) -> <T as OutboundUpgradeSend>::Future
fn upgrade_outbound( self, socket: Stream, info: TInfo, ) -> <T as OutboundUpgradeSend>::Future
Equivalent to
OutboundUpgrade::upgrade_outbound
.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> UpgradeInfoSend for Twhere
T: UpgradeInfo + Send + 'static,
<T as UpgradeInfo>::Info: Send + 'static,
<<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter: Send + 'static,
impl<T> UpgradeInfoSend for Twhere
T: UpgradeInfo + Send + 'static,
<T as UpgradeInfo>::Info: Send + 'static,
<<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter: Send + 'static,
§type Info = <T as UpgradeInfo>::Info
type Info = <T as UpgradeInfo>::Info
Equivalent to
UpgradeInfo::Info
.§type InfoIter = <<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter
type InfoIter = <<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter
Equivalent to
UpgradeInfo::InfoIter
.§fn protocol_info(&self) -> <T as UpgradeInfoSend>::InfoIter
fn protocol_info(&self) -> <T as UpgradeInfoSend>::InfoIter
Equivalent to
UpgradeInfo::protocol_info
.