Struct libp2p::core::transport::upgrade::Authenticated [−][src]
pub struct Authenticated<T>(_);
An transport with peer authentication, obtained from Builder::authenticate
.
Implementations
impl<T> Authenticated<T> where
T: Transport,
<T as Transport>::Error: 'static,
[src]
impl<T> Authenticated<T> where
T: Transport,
<T as Transport>::Error: 'static,
[src]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]
impl<T> Clone for Authenticated<T> where
T: Clone,
[src]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,