pub trait TimeLimitedChunksExt: Stream {
// Provided method
fn time_limited_chunks(
self,
capacity: usize,
timeout: Duration,
) -> TimeLimitedChunks<Self>
where Self: Sized { ... }
}Provided Methods§
fn time_limited_chunks(
self,
capacity: usize,
timeout: Duration,
) -> TimeLimitedChunks<Self>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".