[][src]Trait nestor::request::FromRequest

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

Associated Types

type Error

Loading content...

Required methods

fn from_request(request: &'a Request<'r>) -> Result<Self, Self::Error>

Loading content...

Implementors

impl<'a, 'r> FromRequest<'a, 'r> for &'a Config[src]

type Error = Error

impl<'a, 'r> FromRequest<'a, 'r> for &'a Command<'r>[src]

type Error = Error

impl<'a, 'r, T: Send + Sync + 'static> FromRequest<'a, 'r> for State<'r, T>[src]

type Error = Error

Loading content...