[][src]Trait binjs_io::bytes::serialize::Deserializer

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

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

Associated Types

type Target

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

impl Deserializer for Option<SharedString>[src]

Deserialize a String|null

type Target = Self

Loading content...

Implementors

Loading content...