Struct libp2p::core::transport::upgrade::Authenticated[][src]

pub struct Authenticated<T>(_);
Expand description

An transport with peer authentication, obtained from Builder::authenticate.

Implementations

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).

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).

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.