pub trait Decode {
    fn from_le_vec(source: &mut Source) -> Result<Self, String>
    where
        Self: Sized
; }

Required Methods

Implementations on Foreign Types

Implementors