Struct libp2p_core::upgrade::DeniedUpgrade
source · 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 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 Debug for DeniedUpgrade
impl Debug for DeniedUpgrade
source§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.
source§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.
source§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
.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 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