pub struct DynWriter<'a, W>(/* private fields */)
where
W: Write;Expand description
Type for runtime polymorphism over whether encoding uncompressed or ZStd-compressed
DBN records. Implements std::io::Write.
Implementations§
Trait Implementations§
source§impl<'a, W> Write for DynWriter<'a, W>where
W: Write,
impl<'a, W> Write for DynWriter<'a, W>where
W: Write,
source§fn write(&mut self, buf: &[u8]) -> Result<usize>
fn write(&mut self, buf: &[u8]) -> Result<usize>
Write a buffer into this writer, returning how many bytes were written. Read more
source§fn flush(&mut self) -> Result<()>
fn flush(&mut self) -> Result<()>
Flush this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
source§fn write_all(&mut self, buf: &[u8]) -> Result<()>
fn write_all(&mut self, buf: &[u8]) -> Result<()>
Attempts to write an entire buffer into this writer. Read more
source§fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<()>
fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<()>
Writes a formatted string into this writer, returning any error
encountered. Read more
source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector)Auto Trait Implementations§
impl<'a, W> Freeze for DynWriter<'a, W>where
W: Freeze,
impl<'a, W> !RefUnwindSafe for DynWriter<'a, W>
impl<'a, W> Send for DynWriter<'a, W>where
W: Send,
impl<'a, W> !Sync for DynWriter<'a, W>
impl<'a, W> Unpin for DynWriter<'a, W>where
W: Unpin,
impl<'a, W> !UnwindSafe for DynWriter<'a, W>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more