WriteBool

Trait WriteBool 

Source
pub trait WriteBool {
    // Required method
    fn write_bool(&mut self, value: bool) -> Result<()>;
}

Required Methods§

Source

fn write_bool(&mut self, value: bool) -> Result<()>

Implementors§

Source§

impl<W: Write> WriteBool for W