[][src]Struct hyper_router::RouterService

pub struct RouterService {
    pub router: Router,
    pub error_handler: fn(_: StatusCode) -> Response<Body>,
}

The default simple router service.

Fields

router: Routererror_handler: fn(_: StatusCode) -> Response<Body>

Methods

impl RouterService[src]

pub fn new(router: Router) -> RouterService[src]

Trait Implementations

impl Debug for RouterService[src]

impl Service for RouterService[src]

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 = FutureResult<Response<Body>, Error>

The Future returned by this Service.

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

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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