[][src]Trait rweb::FromRequest

pub trait FromRequest: Sized {
    type Filter: Filter<Error = Rejection>;
    fn new() -> Self::Filter;
}

Associated Types

type Filter: Filter<Error = Rejection>

Extract should be (Self,),

Loading content...

Required methods

fn new() -> Self::Filter

Loading content...

Implementors

impl FromRequest for FormData[src]

type Filter = BoxedFilter<(Self,)>

impl FromRequest for Ws[src]

type Filter = BoxedFilter<(Ws,)>

impl<T> FromRequest for Form<T> where
    T: 'static + Send + DeserializeOwned
[src]

type Filter = BoxedFilter<(Form<T>,)>

impl<T> FromRequest for Json<T> where
    T: 'static + Send + DeserializeOwned
[src]

type Filter = BoxedFilter<(Json<T>,)>

impl<T> FromRequest for Query<T> where
    T: 'static + Send + DeserializeOwned
[src]

type Filter = BoxedFilter<(Query<T>,)>

Loading content...