[][src]Struct linked_hash_map::serde::LinkedHashMapVisitor

pub struct LinkedHashMapVisitor<K, V> { /* fields omitted */ }

serde::de::Visitor for a linked hash map.

Implementations

impl<K, V> LinkedHashMapVisitor<K, V>[src]

pub fn new() -> Self[src]

Creates a new visitor for a linked hash map.

Trait Implementations

impl<K, V> Visitor for LinkedHashMapVisitor<K, V> where
    K: Deserialize + Eq + Hash,
    V: Deserialize
[src]

type Value = LinkedHashMap<K, V>

The value produced by this visitor.

Auto Trait Implementations

impl<K, V> RefUnwindSafe for LinkedHashMapVisitor<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

impl<K, V> Send for LinkedHashMapVisitor<K, V> where
    K: Send,
    V: Send

impl<K, V> Sync for LinkedHashMapVisitor<K, V> where
    K: Sync,
    V: Sync

impl<K, V> Unpin for LinkedHashMapVisitor<K, V>

impl<K, V> UnwindSafe for LinkedHashMapVisitor<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

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.