pub trait MemoryInputStreamExt: 'static {
    // Required method
    fn add_bytes(&self, bytes: &Bytes);
}
Expand description

Trait containing all MemoryInputStream methods.

Implementors

MemoryInputStream

Required Methods§

source

fn add_bytes(&self, bytes: &Bytes)

Appends bytes to data that can be read from the input stream.

bytes

input data

Implementors§