Struct libp2p::core::transport::upgrade::Builder [−][src]
pub struct Builder<T> { /* fields omitted */ }A Builder facilitates upgrading of a Transport for use with
a Network.
The upgrade process is defined by the following stages:
authenticate{1}
-> apply{*}
-> multiplex{1}
It thus enforces the following invariants on every transport
obtained from multiplex:
- The transport must be authenticated and multiplexed.
- Authentication must precede the negotiation of a multiplexer.
- Applying a multiplexer is the last step in the upgrade process.
- The
Transport::Outputconforms to the requirements of aNetwork, namely a tuple of aPeerId(from the authentication upgrade) and aStreamMuxer(from the multiplexing upgrade).
Implementations
impl<T> Builder<T> where
T: Transport,
<T as Transport>::Error: 'static, [src]
impl<T> Builder<T> where
T: Transport,
<T as Transport>::Error: 'static, [src]pub fn new(inner: T, version: Version) -> Builder<T>[src]
Creates a Builder over the given (base) Transport.
pub fn authenticate<C, D, U, E>(
self,
upgrade: U
) -> Authenticated<AndThen<T, impl FnOnce(C, ConnectedPoint) + Clone>> where
C: AsyncRead + AsyncWrite + Unpin,
E: Error + 'static,
T: Transport<Output = C>,
U: InboundUpgrade<Negotiated<C>, Output = (PeerId, D), Error = E> + OutboundUpgrade<Negotiated<C>, Output = (PeerId, D), Error = E> + Clone,
D: AsyncRead + AsyncWrite + Unpin, [src]
self,
upgrade: U
) -> Authenticated<AndThen<T, impl FnOnce(C, ConnectedPoint) + Clone>> where
C: AsyncRead + AsyncWrite + Unpin,
E: Error + 'static,
T: Transport<Output = C>,
U: InboundUpgrade<Negotiated<C>, Output = (PeerId, D), Error = E> + OutboundUpgrade<Negotiated<C>, Output = (PeerId, D), Error = E> + Clone,
D: AsyncRead + AsyncWrite + Unpin,
Upgrades the transport to perform authentication of the remote.
The supplied upgrade receives the I/O resource C and must
produce a pair (PeerId, D), where D is a new I/O resource.
The upgrade must thus at a minimum identify the remote, which typically
involves the use of a cryptographic authentication protocol in the
context of establishing a secure channel.
Transitions
- I/O upgrade:
C -> (PeerId, D). - Transport output:
C -> (PeerId, D)
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Builder<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for Builder<T> where
T: Send,
T: Send,
impl<T> Sync for Builder<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Builder<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for Builder<T> where
T: UnwindSafe,
T: UnwindSafe,