pub trait StreamExt<W: Write + Seek> {
    // Required method
    fn write_stream(&mut self, _: String, _: impl Read) -> Result<u64>;
}

Required Methods§

source

fn write_stream(&mut self, _: String, _: impl Read) -> Result<u64>

Write a file entry from Read stream

Implementors§

source§

impl<W: Write + Seek> StreamExt<W> for SpxBuilder<W>