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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.