[][src]Struct serde_value::ValueDeserializer

pub struct ValueDeserializer<E> { /* fields omitted */ }

Implementations

impl<E> ValueDeserializer<E>[src]

pub fn new(value: Value) -> Self[src]

pub fn into_value(self) -> Value[src]

Trait Implementations

impl<'de, E> Deserializer<'de> for ValueDeserializer<E> where
    E: Error
[src]

type Error = E

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

impl<'de, E> IntoDeserializer<'de, E> for ValueDeserializer<E> where
    E: Error
[src]

type Deserializer = Self

The type of the deserializer being converted into.

Auto Trait Implementations

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.