pub trait ArrayTryStream<'a, T, E> where
    T: HasAfEnum + HasArrayExt + Copy + Default + Send + 'a,
    E: Send + 'a,
    Self: Stream<Item = Result<ArrayExt<T>, E>> + Sized + Send + Unpin + 'a, 
{ fn resize(self, block_size: usize) -> Resize<Self, T> { ... } }
Expand description

Methods for handling a [Stream] of ArrayExts.

Provided Methods

Change the block size of a stream of ArrayExts.

Implementors