[][src]Struct muon_rs::Deserializer

pub struct Deserializer<'de> { /* fields omitted */ }

Structure that can deserialize MuON into values.

Trait Implementations

impl<'de, 'a> Deserializer<'de> for &'a mut Deserializer<'de>[src]

type Error = Error

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

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

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

fn is_human_readable(&self) -> bool[src]

Determine whether Deserialize implementations should expect to deserialize their human-readable form. Read more

impl<'de> MapAccess<'de> for Deserializer<'de>[src]

type Error = Error

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

fn next_entry_seed<K, V>(
    &mut self,
    kseed: K,
    vseed: V
) -> Result<Option<(<K as DeserializeSeed<'de>>::Value, <V as DeserializeSeed<'de>>::Value)>, Self::Error> where
    K: DeserializeSeed<'de>,
    V: DeserializeSeed<'de>, 
[src]

This returns Ok(Some((key, value))) for the next (key-value) pair in the map, or Ok(None) if there are no more remaining items. Read more

fn next_key<K>(&mut self) -> Result<Option<K>, Self::Error> where
    K: Deserialize<'de>, 
[src]

This returns Ok(Some(key)) for the next key in the map, or Ok(None) if there are no more remaining entries. Read more

fn next_value<V>(&mut self) -> Result<V, Self::Error> where
    V: Deserialize<'de>, 
[src]

This returns a Ok(value) for the next value in the map. Read more

fn next_entry<K, V>(&mut self) -> Result<Option<(K, V)>, Self::Error> where
    K: Deserialize<'de>,
    V: Deserialize<'de>, 
[src]

This returns Ok(Some((key, value))) for the next (key-value) pair in the map, or Ok(None) if there are no more remaining items. Read more

fn size_hint(&self) -> Option<usize>[src]

Returns the number of entries remaining in the map, if known.

impl<'de> SeqAccess<'de> for Deserializer<'de>[src]

type Error = Error

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

fn next_element<T>(&mut self) -> Result<Option<T>, Self::Error> where
    T: Deserialize<'de>, 
[src]

This returns Ok(Some(value)) for the next value in the sequence, or Ok(None) if there are no more remaining items. Read more

fn size_hint(&self) -> Option<usize>[src]

Returns the number of elements remaining in the sequence, if known.

Auto Trait Implementations

impl<'de> Sync for Deserializer<'de>

impl<'de> Send for Deserializer<'de>

impl<'de> Unpin for Deserializer<'de>

impl<'de> RefUnwindSafe for Deserializer<'de>

impl<'de> UnwindSafe for Deserializer<'de>

Blanket Implementations

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.

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

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

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