Trait ChunksTimeoutStreamExt

Source
pub trait ChunksTimeoutStreamExt: Stream {
    // Provided method
    fn chunks_timeout(
        self,
        capacity: usize,
        duration: Duration,
    ) -> ChunksTimeout<Self>
       where Self: Sized { ... }
}

Provided Methods§

Source

fn chunks_timeout( self, capacity: usize, duration: Duration, ) -> ChunksTimeout<Self>
where Self: Sized,

Implementors§

Source§

impl<T> ChunksTimeoutStreamExt for T
where T: Stream + ?Sized,