Trait bit_manager::BitWritable [] [src]

pub trait BitWritable: Sized {
    fn write_to<W: Write>(self, writer: &mut BitWriter<W>) -> Result<()>;
}

A trait for writing a value

Required Methods

Write this value to the given writer

Implementations on Foreign Types

impl BitWritable for bool
[src]

[src]

impl BitWritable for u8
[src]

[src]

impl<'a> BitWritable for &'a bool
[src]

[src]

impl<'a> BitWritable for &'a u8
[src]

[src]

Implementors