Struct libp2p::core::upgrade::OptionalUpgrade [−][src]
pub struct OptionalUpgrade<T>(_);
Upgrade that can be disabled at runtime.
Wraps around an Option<T>
and makes it available or not depending on whether it contains or
not an upgrade.
Implementations
impl<T> OptionalUpgrade<T>
[src]
impl<T> OptionalUpgrade<T>
[src]pub fn some(inner: T) -> OptionalUpgrade<T>
[src]
Creates an enabled OptionalUpgrade
.
pub fn none() -> OptionalUpgrade<T>
[src]
Creates a disabled OptionalUpgrade
.
Trait Implementations
impl<T> Clone for OptionalUpgrade<T> where
T: Clone,
[src]
impl<T> Clone for OptionalUpgrade<T> where
T: Clone,
[src]pub fn clone(&self) -> OptionalUpgrade<T>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T> Debug for OptionalUpgrade<T> where
T: Debug,
[src]
impl<T> Debug for OptionalUpgrade<T> where
T: Debug,
[src]impl<C, T> InboundUpgrade<C> for OptionalUpgrade<T> where
T: InboundUpgrade<C>,
[src]
impl<C, T> InboundUpgrade<C> for OptionalUpgrade<T> where
T: InboundUpgrade<C>,
[src]type Output = <T as InboundUpgrade<C>>::Output
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = <T as InboundUpgrade<C>>::Error
Possible error during the handshake.
type Future = <T as InboundUpgrade<C>>::Future
Future that performs the handshake with the remote.
pub fn upgrade_inbound(
self,
sock: C,
info: <OptionalUpgrade<T> as UpgradeInfo>::Info
) -> <OptionalUpgrade<T> as InboundUpgrade<C>>::Future
[src]
self,
sock: C,
info: <OptionalUpgrade<T> as UpgradeInfo>::Info
) -> <OptionalUpgrade<T> as InboundUpgrade<C>>::Future
impl<C, T> OutboundUpgrade<C> for OptionalUpgrade<T> where
T: OutboundUpgrade<C>,
[src]
impl<C, T> OutboundUpgrade<C> for OptionalUpgrade<T> where
T: OutboundUpgrade<C>,
[src]type Output = <T as OutboundUpgrade<C>>::Output
Output after the upgrade has been successfully negotiated and the handshake performed.
type Error = <T as OutboundUpgrade<C>>::Error
Possible error during the handshake.
type Future = <T as OutboundUpgrade<C>>::Future
Future that performs the handshake with the remote.
pub fn upgrade_outbound(
self,
sock: C,
info: <OptionalUpgrade<T> as UpgradeInfo>::Info
) -> <OptionalUpgrade<T> as OutboundUpgrade<C>>::Future
[src]
self,
sock: C,
info: <OptionalUpgrade<T> as UpgradeInfo>::Info
) -> <OptionalUpgrade<T> as OutboundUpgrade<C>>::Future
impl<T> UpgradeInfo for OptionalUpgrade<T> where
T: UpgradeInfo,
[src]
impl<T> UpgradeInfo for OptionalUpgrade<T> where
T: UpgradeInfo,
[src]type Info = <T as UpgradeInfo>::Info
Opaque type representing a negotiable protocol.
type InfoIter = Iter<<<T as UpgradeInfo>::InfoIter as IntoIterator>::IntoIter>
Iterator returned by protocol_info
.
pub fn protocol_info(&self) -> <OptionalUpgrade<T> as UpgradeInfo>::InfoIter
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for OptionalUpgrade<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for OptionalUpgrade<T> where
T: Send,
T: Send,
impl<T> Sync for OptionalUpgrade<T> where
T: Sync,
T: Sync,
impl<T> Unpin for OptionalUpgrade<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for OptionalUpgrade<T> where
T: UnwindSafe,
T: UnwindSafe,
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]pub fn map_inbound<F, T>(self, f: F) -> MapInboundUpgrade<Self, F> where
F: FnOnce(Self::Output) -> T,
[src]
F: FnOnce(Self::Output) -> T,
pub fn map_inbound_err<F, T>(self, f: F) -> MapInboundUpgradeErr<Self, F> where
F: FnOnce(Self::Error) -> T,
[src]
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]pub fn map_outbound<F, T>(self, f: F) -> MapOutboundUpgrade<Self, F> where
F: FnOnce(Self::Output) -> T,
[src]
F: FnOnce(Self::Output) -> T,
pub fn map_outbound_err<F, T>(self, f: F) -> MapOutboundUpgradeErr<Self, F> where
F: FnOnce(Self::Error) -> T,
[src]
F: FnOnce(Self::Error) -> T,