pub trait StdWriter: DataSource { // Required method fn write(&mut self, writer: &mut dyn Write) -> Result<()>; }
Extends the datasource to be able to write into a std::io::Write.
Write the data to the given stream.