pub trait IntoBoxedChunks {
    // Required method
    fn chunks(self, chunk_size: usize) -> BoxedChunks ;
}
Expand description

Trait that allows to create a chunking iterator over boxed IStream objects.

Required Methods§

source

fn chunks(self, chunk_size: usize) -> BoxedChunks

Implementations on Foreign Types§

source§

impl IntoBoxedChunks for Box<dyn IStream, Global>

source§

fn chunks(self, chunk_size: usize) -> BoxedChunks

Implementors§