[][src]Struct docopt::Deserializer

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

Deserializer for ArgvMap into your own Deserializeable types.

In general, you shouldn't have to use this type directly. It is exposed in case you want to write a generic function that produces a deserializable value. For example, here's a function that takes a usage string, an argv and produces a deserializable value:

extern crate serde;
use docopt::Docopt;
use serde::de::Deserialize;

fn deserialize<'de, D: Deserialize<'de>>(usage: &str, argv: &[&str])
                        -> Result<D, docopt::Error> {
    Docopt::new(usage)
           .and_then(|d| d.argv(argv.iter()).deserialize())
}

Trait Implementations

impl<'a, 'de> 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

default 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

default 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

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

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

Auto Trait Implementations

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

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

Blanket Implementations

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

impl<T> From for 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> 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<T> Any for T where
    T: 'static + ?Sized
[src]