pub trait Endpoint: 'static + Debug + Send {
    type CongestionController: CongestionController;
    fn new_congestion_controller(
        &mut self,
        path_info: PathInfo<'_>
    ) -> Self::CongestionController; }

Associated Types

Required methods

Implementors