[][src]Struct preserves::de::Deserializer

pub struct Deserializer<'de, 'r, R: Reader<'de>> {
    pub read: &'r mut R,
    // some fields omitted
}

Fields

read: &'r mut R

Implementations

impl<'r, 'de, R: Reader<'de>> Deserializer<'de, 'r, R>[src]

pub fn from_reader(read: &'r mut R) -> Self[src]

Trait Implementations

impl<'r, 'de, 'a, R: Reader<'de>> Deserializer<'de> for &'a mut Deserializer<'de, 'r, R>[src]

type Error = Error

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

impl<'de, 'r, 'a, R: Reader<'de>> EnumAccess<'de> for &'a mut Deserializer<'de, 'r, R>[src]

type Error = Error

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

type Variant = Seq<'de, 'r, 'a, R>

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

Auto Trait Implementations

impl<'de, 'r, R> RefUnwindSafe for Deserializer<'de, 'r, R> where
    R: RefUnwindSafe

impl<'de, 'r, R> Send for Deserializer<'de, 'r, R> where
    R: Send

impl<'de, 'r, R> Sync for Deserializer<'de, 'r, R> where
    R: Sync

impl<'de, 'r, R> Unpin for Deserializer<'de, 'r, R>

impl<'de, 'r, R> !UnwindSafe for Deserializer<'de, 'r, R>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.