Struct libp2p_core::upgrade::DeniedUpgrade [−][src]
pub struct DeniedUpgrade;
Dummy implementation of UpgradeInfo
/InboundUpgrade
/OutboundUpgrade
that doesn’t support
any protocol.
Trait Implementations
impl Clone for DeniedUpgrade
[src]
impl Clone for DeniedUpgrade
[src]fn clone(&self) -> DeniedUpgrade
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<C> InboundUpgrade<C> for DeniedUpgrade
[src]
impl<C> InboundUpgrade<C> for DeniedUpgrade
[src]type Output = Void
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = Void
Possible error during the handshake.
type Future = Pending<Result<Self::Output, Self::Error>>
Future that performs the handshake with the remote.
fn upgrade_inbound(self, _: C, _: Self::Info) -> Self::Future
[src]
impl<C> OutboundUpgrade<C> for DeniedUpgrade
[src]
impl<C> OutboundUpgrade<C> for DeniedUpgrade
[src]type Output = Void
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = Void
Possible error during the handshake.
type Future = Pending<Result<Self::Output, Self::Error>>
Future that performs the handshake with the remote.
fn upgrade_outbound(self, _: C, _: Self::Info) -> Self::Future
[src]
impl UpgradeInfo for DeniedUpgrade
[src]
impl UpgradeInfo for DeniedUpgrade
[src]type Info = &'static [u8]
Opaque type representing a negotiable protocol.
type InfoIter = Empty<Self::Info>
Iterator returned by protocol_info
.
fn protocol_info(&self) -> Self::InfoIter
[src]
impl Copy for DeniedUpgrade
[src]
Auto Trait Implementations
impl RefUnwindSafe for DeniedUpgrade
impl Send for DeniedUpgrade
impl Sync for DeniedUpgrade
impl Unpin for DeniedUpgrade
impl UnwindSafe for DeniedUpgrade
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,