pub trait FormData {
    type Item: 'static;
    type Error: ResponseError + 'static;

    fn form(req: &HttpRequest) -> Form<Self::Item, Self::Error>;
    fn extract(value: Value<Self::Item>) -> Result<Self, Self::Error>
    where
        Self: Sized
; }

Required Associated Types

Required Methods

Implementors