Struct serde::de::value::MapDeserializer [] [src]

pub struct MapDeserializer<I, K, V, E> where
    I: Iterator<Item = (K, V)>,
    K: ValueDeserializer<E>,
    V: ValueDeserializer<E>,
    E: Error
{ /* fields omitted */ }

A helper deserializer that deserializes a map.

Methods

impl<I, K, V, E> MapDeserializer<I, K, V, E> where
    I: Iterator<Item = (K, V)>,
    K: ValueDeserializer<E>,
    V: ValueDeserializer<E>,
    E: Error
[src]

[src]

Construct a new MapDeserializer<I, K, V, E> with a specific length.

[src]

Construct a new MapDeserializer<I, K, V, E> that is not bounded by a specific length and that delegates to iter for its size hint.

Trait Implementations

impl<I, K, V, E> Deserializer for MapDeserializer<I, K, V, E> where
    I: Iterator<Item = (K, V)>,
    K: ValueDeserializer<E>,
    V: ValueDeserializer<E>,
    E: Error
[src]

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

[src]

This method walks a visitor through a value as it is being deserialized.

[src]

This method hints that the Deserialize type is expecting a sequence value. This allows deserializers to parse sequences that aren't tagged as sequences. Read more

[src]

This method hints that the Deserialize type is expecting a fixed size array. This allows deserializers to parse arrays that aren't tagged as arrays. Read more

[src]

This method hints that the Deserialize type is expecting a bool value.

[src]

This method hints that the Deserialize type is expecting an usize value. A reasonable default is to forward to deserialize_u64. Read more

[src]

This method hints that the Deserialize type is expecting an u8 value. A reasonable default is to forward to deserialize_u64. Read more

[src]

This method hints that the Deserialize type is expecting an u16 value. A reasonable default is to forward to deserialize_u64. Read more

[src]

This method hints that the Deserialize type is expecting an u32 value. A reasonable default is to forward to deserialize_u64. Read more

[src]

This method hints that the Deserialize type is expecting an u64 value.

[src]

This method hints that the Deserialize type is expecting an isize value. A reasonable default is to forward to deserialize_i64. Read more

[src]

This method hints that the Deserialize type is expecting an i8 value. A reasonable default is to forward to deserialize_i64. Read more

[src]

This method hints that the Deserialize type is expecting an i16 value. A reasonable default is to forward to deserialize_i64. Read more

[src]

This method hints that the Deserialize type is expecting an i32 value. A reasonable default is to forward to deserialize_i64. Read more

[src]

This method hints that the Deserialize type is expecting an i64 value.

[src]

This method hints that the Deserialize type is expecting a f32 value. A reasonable default is to forward to deserialize_f64. Read more

[src]

This method hints that the Deserialize type is expecting a f64 value.

[src]

This method hints that the Deserialize type is expecting a char value.

[src]

This method hints that the Deserialize type is expecting a &str value.

[src]

This method hints that the Deserialize type is expecting a String value.

[src]

This method hints that the Deserialize type is expecting an unit value.

[src]

This method hints that the Deserialize type is expecting an Option value. This allows deserializers that encode an optional value as a nullable value to convert the null value into a None, and a regular value as Some(value). Read more

[src]

This method hints that the Deserialize type is expecting a Vec<u8>. This allows deserializers that provide a custom byte vector serialization to properly deserialize the type. Read more

[src]

This method hints that the Deserialize type is expecting a map of values. This allows deserializers to parse sequences that aren't tagged as maps. Read more

[src]

This method hints that the Deserialize type is expecting a unit struct. This allows deserializers to a unit struct that aren't tagged as a unit struct. Read more

[src]

This method hints that the Deserialize type is expecting a newtype struct. This allows deserializers to a newtype struct that aren't tagged as a newtype struct. A reasonable default is to simply deserialize the expected value directly. Read more

[src]

This method hints that the Deserialize type is expecting a tuple struct. This allows deserializers to parse sequences that aren't tagged as sequences. Read more

[src]

This method hints that the Deserialize type is expecting a struct. This allows deserializers to parse sequences that aren't tagged as maps. Read more

[src]

This method hints that the Deserialize type is expecting some sort of struct field name. This allows deserializers to choose between &str, usize, or &[u8] to properly deserialize a struct field. Read more

[src]

This method hints that the Deserialize type is expecting a tuple value. This allows deserializers that provide a custom tuple serialization to properly deserialize the type. Read more

[src]

This method hints that the Deserialize type is expecting an enum value. This allows deserializers that provide a custom enumeration serialization to properly deserialize the type. Read more

[src]

This method hints that the Deserialize type needs to deserialize a value whose type doesn't matter because it is ignored. Read more

impl<I, K, V, E> MapVisitor for MapDeserializer<I, K, V, E> where
    I: Iterator<Item = (K, V)>,
    K: ValueDeserializer<E>,
    V: ValueDeserializer<E>,
    E: Error
[src]

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

[src]

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

[src]

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

[src]

This signals to the MapVisitor that the Visitor does not expect any more items.

[src]

Return the lower and upper bound of items remaining in the sequence.

[src]

This returns a 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

[src]

Report that the struct has a field that wasn't deserialized

impl<I, K, V, E> SeqVisitor for MapDeserializer<I, K, V, E> where
    I: Iterator<Item = (K, V)>,
    K: ValueDeserializer<E>,
    V: ValueDeserializer<E>,
    E: Error
[src]

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

[src]

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

[src]

This signals to the SeqVisitor that the Visitor does not expect any more items.

[src]

Return the lower and upper bound of items remaining in the sequence.