pub trait EncodeBytes {
// Required methods
fn encode_chunk<W: Write>(&mut self, writer: &mut W, bytes: &[u8]) -> Result;
fn flush<W: Write>(&mut self, writer: &mut W) -> Result;
}
Available on crate feature
serde
only.Expand description
Transforms given bytes and writes to the writer.
The encoder is allowed to be buffered (and probably should be). The design passing writer each time bypasses the need for GAT.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.