pub trait FromRequest<'a>: Sized {
    fn from_request(req: &'a Request) -> Result<Self, Error>;
}

Required Methods

Implementors