[][src]Trait binjs::io::bytes::serialize::Deserializer

pub trait Deserializer {
    type Target: Sized;
    fn read<R>(&self, &mut R) -> Result<Self::Target, Error>
    where
        R: Read + Seek
; }

A value that may be deserialized from bytes, optionally decompressed.

Associated Types

type Target: Sized

Loading content...

Required methods

fn read<R>(&self, &mut R) -> Result<Self::Target, Error> where
    R: Read + Seek

Loading content...

Implementations on Foreign Types

impl Deserializer for Option<SharedString>[src]

Deserialize a String|null

type Target = Option<SharedString>

Loading content...

Implementors

Loading content...