[][src]Trait data_rw::ReadFrom

pub trait ReadFrom {
    pub fn readfrom(data: &mut Data) -> Result<Self>
    where
        Self: Sized
; }

Required methods

pub fn readfrom(data: &mut Data) -> Result<Self> where
    Self: Sized
[src]

Loading content...

Implementations on Foreign Types

impl ReadFrom for i8[src]

impl ReadFrom for u8[src]

impl ReadFrom for i16[src]

impl ReadFrom for u16[src]

impl ReadFrom for i32[src]

impl ReadFrom for u32[src]

impl ReadFrom for i64[src]

impl ReadFrom for u64[src]

impl ReadFrom for i128[src]

impl ReadFrom for u128[src]

impl ReadFrom for f32[src]

impl ReadFrom for f64[src]

impl ReadFrom for String[src]

impl<T: Reader> ReadFrom for Vec<T>[src]

impl<K: Reader + Eq + Hash, V: Reader> ReadFrom for HashMap<K, V>[src]

impl<K: Reader + Ord, V: Reader> ReadFrom for BTreeMap<K, V>[src]

Loading content...

Implementors

Loading content...