Trait lightning::util::ser::Writer

source ·
pub trait Writer {
    // Required method
    fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>;
}
Expand description

A simplified version of std::io::Write that exists largely for backwards compatibility. An impl is provided for any type that also impls std::io::Write.

This is not exported to bindings users as we only export serialization to/from byte arrays instead

Required Methods§

source

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Writes the given buf out. See std::io::Write::write_all for more

Implementors§