Struct finchers_http::query::Form [] [src]

pub struct Form<F>(pub F);

A wrapper struct which contains a parsed content from the urlencoded string.

Methods

impl<F> Form<F>
[src]

[src]

Consume itself and return the instance of inner value.

Trait Implementations

impl<F: Debug> Debug for Form<F>
[src]

[src]

Formats the value using the given formatter. Read more

impl<F> Deref for Form<F>
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<F> FromBody for Form<F> where
    F: FromQuery + 'static, 
[src]

The error type which will be returned from from_data.

[src]

Performs conversion from raw bytes into itself.

[src]

Returns whether the incoming request matches to this type or not.

Auto Trait Implementations

impl<F> Send for Form<F> where
    F: Send

impl<F> Sync for Form<F> where
    F: Sync