[][src]Trait data_rw::Writer

pub trait Writer {
    pub fn write_to_le(&self, data: &mut Data);
pub fn write_to(&self, data: &mut Data);
pub fn write_to_bit7(&self, data: &mut Data); }

Required methods

pub fn write_to_le(&self, data: &mut Data)[src]

pub fn write_to(&self, data: &mut Data)[src]

pub fn write_to_bit7(&self, data: &mut Data)[src]

Loading content...

Implementations on Foreign Types

impl Writer for bool[src]

impl Writer for u8[src]

impl Writer for i8[src]

impl Writer for i16[src]

impl Writer for i32[src]

impl Writer for i64[src]

impl Writer for u16[src]

impl Writer for u32[src]

impl Writer for u64[src]

impl Writer for u128[src]

impl Writer for i128[src]

impl Writer for f32[src]

impl Writer for f64[src]

impl Writer for String[src]

impl<'_> Writer for &'_ str[src]

impl<'_> Writer for &'_ [u8][src]

impl<K: Writer, V: Writer> Writer for HashMap<K, V>[src]

impl<K: Writer, V: Writer> Writer for BTreeMap<K, V>[src]

impl<T: Writer> Writer for Vec<T>[src]

Loading content...

Implementors

Loading content...