[][src]Trait ordcode::buf::WriteBytes

pub trait WriteBytes {
    pub fn write(&mut self, value: &[u8]) -> Result;
}

Trait for writer to the byte buffer

Required methods

pub fn write(&mut self, value: &[u8]) -> Result[src]

Write to the byte buffer

Loading content...

Implementations on Foreign Types

impl<T, '_> WriteBytes for &'_ mut T where
    T: WriteBytes
[src]

impl WriteBytes for Vec<u8>[src]

Pushes data to the vector

Loading content...

Implementors

impl<'a> WriteBytes for DeBytesWriter<'a>[src]

impl<'a, W> WriteBytes for WriteToHead<'a, W> where
    W: TailWriteBytes
[src]

impl<'a, W> WriteBytes for WriteToTail<'a, W> where
    W: TailWriteBytes
[src]

Loading content...