Struct libp2p::core::transport::upgrade::Authenticated    [−][src]
An transport with peer authentication, obtained from Builder::authenticate.
Implementations
impl<T> Authenticated<T> where
    T: Transport,
    <T as Transport>::Error: 'static, [src]
T: Transport,
<T as Transport>::Error: 'static,
pub fn apply<C, D, U, E>(self, upgrade: U) -> Authenticated<Upgrade<T, U>> where
    C: AsyncRead + AsyncWrite + Unpin,
    E: Error + 'static,
    T: Transport<Output = (PeerId, C)>,
    U: InboundUpgrade<Negotiated<C>, Output = D, Error = E> + OutboundUpgrade<Negotiated<C>, Output = D, Error = E> + Clone,
    D: AsyncRead + AsyncWrite + Unpin, [src]
C: AsyncRead + AsyncWrite + Unpin,
E: Error + 'static,
T: Transport<Output = (PeerId, C)>,
U: InboundUpgrade<Negotiated<C>, Output = D, Error = E> + OutboundUpgrade<Negotiated<C>, Output = D, Error = E> + Clone,
D: AsyncRead + AsyncWrite + Unpin,
Applies an arbitrary upgrade.
The upgrade receives the I/O resource (i.e. connection) C and
must produce a new I/O resource D. Any number of such upgrades
can be performed.
Transitions
- I/O upgrade: 
C -> D. - Transport output: 
(PeerId, C) -> (PeerId, D). 
pub fn multiplex<C, M, U, E>(
    self, 
    upgrade: U
) -> Multiplexed<AndThen<T, impl FnOnce((PeerId, C), ConnectedPoint) + Clone>> where
    C: AsyncRead + AsyncWrite + Unpin,
    E: Error + 'static,
    T: Transport<Output = (PeerId, C)>,
    U: InboundUpgrade<Negotiated<C>, Output = M, Error = E> + OutboundUpgrade<Negotiated<C>, Output = M, Error = E> + Clone,
    M: StreamMuxer, [src]
self,
upgrade: U
) -> Multiplexed<AndThen<T, impl FnOnce((PeerId, C), ConnectedPoint) + Clone>> where
C: AsyncRead + AsyncWrite + Unpin,
E: Error + 'static,
T: Transport<Output = (PeerId, C)>,
U: InboundUpgrade<Negotiated<C>, Output = M, Error = E> + OutboundUpgrade<Negotiated<C>, Output = M, Error = E> + Clone,
M: StreamMuxer,
Upgrades the transport with a (sub)stream multiplexer.
The supplied upgrade receives the I/O resource C and must
produce a StreamMuxer M. The transport must already be authenticated.
This ends the (regular) transport upgrade process.
Transitions
- I/O upgrade: 
C -> M. - Transport output: 
(PeerId, C) -> (PeerId, M). 
pub fn multiplex_ext<C, M, U, E, F>(
    self, 
    up: F
) -> Multiplexed<AndThen<T, impl FnOnce((PeerId, C), ConnectedPoint) + Clone>> where
    C: AsyncRead + AsyncWrite + Unpin,
    F: for<'a> FnOnce(&'a PeerId, &'a ConnectedPoint) -> U + Clone,
    E: Error + 'static,
    T: Transport<Output = (PeerId, C)>,
    U: InboundUpgrade<Negotiated<C>, Output = M, Error = E> + OutboundUpgrade<Negotiated<C>, Output = M, Error = E> + Clone,
    M: StreamMuxer, [src]
self,
up: F
) -> Multiplexed<AndThen<T, impl FnOnce((PeerId, C), ConnectedPoint) + Clone>> where
C: AsyncRead + AsyncWrite + Unpin,
F: for<'a> FnOnce(&'a PeerId, &'a ConnectedPoint) -> U + Clone,
E: Error + 'static,
T: Transport<Output = (PeerId, C)>,
U: InboundUpgrade<Negotiated<C>, Output = M, Error = E> + OutboundUpgrade<Negotiated<C>, Output = M, Error = E> + Clone,
M: StreamMuxer,
Like Authenticated::multiplex but accepts a function which returns the upgrade.
The supplied function is applied to PeerId and ConnectedPoint
and returns an upgrade which receives the I/O resource C and must
produce a StreamMuxer M. The transport must already be authenticated.
This ends the (regular) transport upgrade process.
Transitions
- I/O upgrade: 
C -> M. - Transport output: 
(PeerId, C) -> (PeerId, M). 
Trait Implementations
impl<T> Clone for Authenticated<T> where
    T: Clone, [src]
T: Clone,
pub fn clone(&self) -> Authenticated<T>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for Authenticated<T> where
    T: RefUnwindSafe, 
T: RefUnwindSafe,
impl<T> Send for Authenticated<T> where
    T: Send, 
T: Send,
impl<T> Sync for Authenticated<T> where
    T: Sync, 
T: Sync,
impl<T> Unpin for Authenticated<T> where
    T: Unpin, 
T: Unpin,
impl<T> UnwindSafe for Authenticated<T> where
    T: UnwindSafe, 
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
    T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
    V: MultiLane<T>, [src]
V: MultiLane<T>,