Trait s2n_quic::provider::congestion_controller::Provider

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

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

Provides congestion controller support for an endpoint

Required Associated Types§

Required Methods§

source

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

Implementors§