pub trait IntoDatagramWithParallelThreshold<D: Datagram> {
    // Required method
    fn with_parallel_threshold(
        self,
        threshold: usize,
    ) -> DatagramWithParallelThreshold<D>;
}

Required Methods§

Implementors§