pub trait VariableWritable: VarintWriter
where Error: From<<Self as VarintWriter>::Error>,
{ // Provided methods fn write_more(&mut self, bytes: &[u8]) -> Result<()> { ... } fn write_u8_vec(&mut self, message: &[u8]) -> Result<()> { ... } fn write_string(&mut self, message: &str) -> Result<()> { ... } }

Provided Methods§

source

fn write_more(&mut self, bytes: &[u8]) -> Result<()>

source

fn write_u8_vec(&mut self, message: &[u8]) -> Result<()>

source

fn write_string(&mut self, message: &str) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§