pub trait NewKeyExchanger {
    type Initiator: 'static + KeyExchanger + Send + Sync;
    type Responder: 'static + KeyExchanger + Send + Sync;

    fn initiator<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Self::Initiator, Error>> + Send + 'async_trait, Global>>Notable traits for Pin<P>impl<P> Future for Pin<P> where
    P: DerefMut,
    <P as Deref>::Target: Future
type Output = <<P as Deref>::Target as Future>::Output;

    where
        'life0: 'async_trait,
        Self: 'async_trait
; fn responder<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<Self::Responder, Error>> + Send + 'async_trait, Global>>Notable traits for Pin<P>impl<P> Future for Pin<P> where
    P: DerefMut,
    <P as Deref>::Target: Future
type Output = <<P as Deref>::Target as Future>::Output;

    where
        'life0: 'async_trait,
        Self: 'async_trait
; }
Expand description

A creator of both initiator and responder peers of a key exchange.

Required Associated Types

Initiator

Responder

Required Methods

Create a new Key Exchanger with the initiator role

Create a new Key Exchanger with the responder role

Implementors