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::Error: 'static, 
[src]

pub fn apply<C, D, U, E>(self, upgrade: U) -> Authenticated<Upgrade<T, U>> where
    T: Transport<Output = (PeerId, C)>,
    C: AsyncRead + AsyncWrite + Unpin,
    D: AsyncRead + AsyncWrite + Unpin,
    U: InboundUpgrade<Negotiated<C>, Output = D, Error = E>,
    U: OutboundUpgrade<Negotiated<C>, Output = D, Error = E> + Clone,
    E: Error + 'static, 
[src]

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) -> Multiplex<C, U> + Clone>> where
    T: Transport<Output = (PeerId, C)>,
    C: AsyncRead + AsyncWrite + Unpin,
    M: StreamMuxer,
    U: InboundUpgrade<Negotiated<C>, Output = M, Error = E>,
    U: OutboundUpgrade<Negotiated<C>, Output = M, Error = E> + Clone,
    E: Error + 'static, 
[src]

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) -> Multiplex<C, U> + Clone>> where
    T: Transport<Output = (PeerId, C)>,
    C: AsyncRead + AsyncWrite + Unpin,
    M: StreamMuxer,
    U: InboundUpgrade<Negotiated<C>, Output = M, Error = E>,
    U: OutboundUpgrade<Negotiated<C>, Output = M, Error = E> + Clone,
    E: Error + 'static,
    F: for<'a> FnOnce(&'a PeerId, &'a ConnectedPoint) -> U + Clone
[src]

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> Clone for Authenticated<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Authenticated<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Authenticated<T> where
    T: Send
[src]

impl<T> Sync for Authenticated<T> where
    T: Sync
[src]

impl<T> Unpin for Authenticated<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Authenticated<T> where
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,