Trait finchers_http::query::FromQuery [] [src]

pub trait FromQuery: Sized + 'static {
    type Error;
    fn from_query(query: QueryItems) -> Result<Self, Self::Error>;
}

Trait representing the transformation from a set of HTTP query.

Associated Types

The error type which will be returned from from_query.

Required Methods

Perform transformation from QueryItems into Self.

Implementors