Struct url_serde::De [] [src]

pub struct De<T>(_);

A wrapper to deserialize rust-url types.

This is useful with functions such as serde_json::from_str.

Values of this type can only be obtained through the serde::Deserialize trait.

Methods

impl<T> De<T> where De<T>: Deserialize
[src]

Consumes this wrapper, returning the deserialized value.

Trait Implementations

impl<T: Debug> Debug for De<T>
[src]

Formats the value using the given formatter.

impl Deserialize for De<Url>
[src]

Deserializes this URL from a serde stream.

Deserialize this value from the given Serde deserializer. Read more