[][src]Struct rifling::handler::Handler

pub struct Handler { /* fields omitted */ }

The main handler struct.

Trait Implementations

impl<'_> From<&'_ Constructor> for Handler[src]

Implement From<&Constructor> trait for Handler As currently we don't have Generic Associate Types, I can only clone the registry.

fn from(constructor: &Constructor) -> Self[src]

Create a handler object from constructor

impl Service for Handler[src]

Implement Service struct from Hyper to Handler

type ReqBody = Body

The Payload body of the http::Request.

type ResBody = Body

The Payload body of the http::Response.

type Error = Error

The error type that can occur within this Service. Read more

type Future = Box<dyn Future<Item = Response<Body>, Error = Error> + Send + 'static>

The Future returned by this Service.

fn call(&mut self, req: Request<Self::ReqBody>) -> Self::Future[src]

Handle the request

fn poll_ready(&mut self) -> Result<Async<()>, Self::Error>[src]

Returns Ready when the service is able to process requests. Read more

Auto Trait Implementations

impl Send for Handler

impl Sync for Handler

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T