[][src]Struct tirse::BinaryDeserializer

pub struct BinaryDeserializer<'de, R, E, H, D> where
    R: Read<'de>,
    E: ByteOrder + 'de,
    H: BinaryDeserializerDelegate,
    D: DisplayCollector
{ /* fields omitted */ }

Methods

impl<'de, R, E, H, D> BinaryDeserializer<'de, R, E, H, D> where
    R: Read<'de>,
    E: ByteOrder + 'de,
    H: BinaryDeserializerDelegate,
    D: DisplayCollector
[src]

pub fn new(read: R) -> Self[src]

pub fn split(&mut self) -> BinaryDeserializer<'de, &mut R, E, H, D>[src]

pub fn position(&self) -> usize[src]

Trait Implementations

impl<'a, 'de, R, E, H, D> Deserializer<'de> for BinaryDeserializer<'de, R, E, H, D> where
    R: Read<'de>,
    E: ByteOrder + 'de,
    H: BinaryDeserializerDelegate,
    D: DisplayCollector + Display + Debug
[src]

type Error = ErrorAdapter<Either<BinaryDeserializerError, R::Error>, D>

The error type that can be returned if some error occurs during deserialization. Read more

default fn deserialize_i128<V>(
    self,
    visitor: V
) -> Result<<V as Visitor<'de>>::Value, Self::Error> where
    V: Visitor<'de>, 
[src]

Hint that the Deserialize type is expecting an i128 value. Read more

default fn deserialize_u128<V>(
    self,
    visitor: V
) -> Result<<V as Visitor<'de>>::Value, Self::Error> where
    V: Visitor<'de>, 
[src]

Hint that the Deserialize type is expecting an u128 value. Read more

impl<'de, R, E, H, D> EnumAccess<'de> for BinaryDeserializer<'de, R, E, H, D> where
    R: Read<'de>,
    E: ByteOrder + 'de,
    H: BinaryDeserializerDelegate,
    D: DisplayCollector + Display + Debug
[src]

type Error = ErrorAdapter<Either<BinaryDeserializerError, R::Error>, D>

The error type that can be returned if some error occurs during deserialization. Read more

type Variant = Self

The Visitor that will be used to deserialize the content of the enum variant. Read more

default fn variant<V>(self) -> Result<(V, Self::Variant), Self::Error> where
    V: Deserialize<'de>, 
[src]

variant is called to identify which variant to deserialize. Read more

impl<'de, R, E, H, D> VariantAccess<'de> for BinaryDeserializer<'de, R, E, H, D> where
    R: Read<'de>,
    E: ByteOrder + 'de,
    H: BinaryDeserializerDelegate,
    D: DisplayCollector + Display + Debug
[src]

type Error = ErrorAdapter<Either<BinaryDeserializerError, R::Error>, D>

The error type that can be returned if some error occurs during deserialization. Must match the error type of our EnumAccess. Read more

default fn newtype_variant<T>(self) -> Result<T, Self::Error> where
    T: Deserialize<'de>, 
[src]

Called when deserializing a variant with a single value. Read more

Auto Trait Implementations

impl<'de, R, E, H, D> Send for BinaryDeserializer<'de, R, E, H, D> where
    D: Send,
    E: Send,
    H: Send,
    R: Send

impl<'de, R, E, H, D> Sync for BinaryDeserializer<'de, R, E, H, D> where
    D: Sync,
    E: Sync,
    H: Sync,
    R: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]