Trait s2n_quic::provider::address_token::Provider

source ·
pub trait Provider: 'static {
    type Format: 'static + Format;
    type Error: 'static + Display + Send + Sync;

    // Required method
    fn start(self) -> Result<Self::Format, Self::Error>;
}

Required Associated Types§

source

type Format: 'static + Format

source

type Error: 'static + Display + Send + Sync

Required Methods§

source

fn start(self) -> Result<Self::Format, Self::Error>

Starts the token provider

Implementors§