Writeable

Trait Writeable 

Source
pub trait Writeable {
    // Required method
    fn write_to(&self, buffer: &mut Vec<u8>);
}

Required Methods§

Source

fn write_to(&self, buffer: &mut Vec<u8>)

Implementations on Foreign Types§

Source§

impl Writeable for bool

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for f32

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for f64

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for i8

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for i16

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for i32

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for i64

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for i128

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for isize

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for str

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for u8

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for u16

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for u32

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for u64

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for u128

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for usize

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl Writeable for String

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl<T: Writeable> Writeable for [T]

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl<T: Writeable> Writeable for Vec<T>

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Source§

impl<U: Writeable> Writeable for [U; 32]

Source§

fn write_to(&self, buffer: &mut Vec<u8>)

Implementors§