pub fn to_writer_buffered<W, T>(writer: W, value: &T) -> Result<(), Error> where
    W: Write,
    T: ?Sized + Serialize
Expand description

Serializes a value to a writer as the Neodyn Exchange binary representation.

Performs buffering by internally wrapping the writer in a buffered writer.