Struct finchers_http::query::Serde [] [src]

pub struct Serde<T>(pub T);

A wrapper struct to add the implementation of FromQuery to Deserializeable types.

Methods

impl<T> Serde<T>
[src]

[src]

Consume itself and return the inner data of T.

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

impl<T: Copy> Copy for Serde<T>
[src]

impl<T: Clone> Clone for Serde<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq for Serde<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<T> Deref for Serde<T>
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<T> FromQuery for Serde<T> where
    T: DeserializeOwned + 'static, 
[src]

The error type which will be returned from from_query.

[src]

Perform transformation from QueryItems into Self.

Auto Trait Implementations

impl<T> Send for Serde<T> where
    T: Send

impl<T> Sync for Serde<T> where
    T: Sync