[][src]Struct serde_value::ValueVisitor

pub struct ValueVisitor;

Trait Implementations

impl<'de> Visitor<'de> for ValueVisitor[src]

type Value = Value

The value produced by this visitor.

fn visit_i128<E>(self, v: i128) -> Result<Self::Value, E> where
    E: Error
[src]

The input contains a i128. Read more

fn visit_u128<E>(self, v: u128) -> Result<Self::Value, E> where
    E: Error
[src]

The input contains a u128. Read more

fn visit_borrowed_str<E>(self, v: &'de str) -> Result<Self::Value, E> where
    E: Error
[src]

The input contains a string that lives at least as long as the Deserializer. Read more

fn visit_borrowed_bytes<E>(self, v: &'de [u8]) -> Result<Self::Value, E> where
    E: Error
[src]

The input contains a byte array that lives at least as long as the Deserializer. Read more

fn visit_enum<A>(
    self,
    data: A
) -> Result<Self::Value, <A as EnumAccess<'de>>::Error> where
    A: EnumAccess<'de>, 
[src]

The input contains an enum. Read more

Auto Trait Implementations

impl Send for ValueVisitor

impl Sync for ValueVisitor

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<'de, T> Expected for T where
    T: Visitor<'de>, 
[src]