bitcoin::consensus::serde

Trait EncodeBytes

Source
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§

Source

fn encode_chunk<W: Write>(&mut self, writer: &mut W, bytes: &[u8]) -> Result

Transform the provided slice and write to the writer.

This is similar to the write_all method on io::Write.

Source

fn flush<W: Write>(&mut self, writer: &mut W) -> Result

Write data in buffer (if any) to the writer.

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.

Implementors§