Struct hyper_router::Router [] [src]

pub struct Router { /* fields omitted */ }

This is the one. The router.

Methods

impl Router
[src]

[src]

Finds handler for given Hyper request.

This method uses default error handlers. If the request does not match any route than default 404 handler is returned. If the request match some routes but http method does not match (used GET but routes are defined for POST) than default method not supported handler is returned.

[src]

Finds handler for given Hyper request.

It returns handler if it's found or StatusCode for error. This method may return NotFound, MethodNotAllowed or NotImplemented status codes.

[src]

Returns vector of Routes that match to given path.

Trait Implementations

impl Debug for Router
[src]

[src]

Formats the value using the given formatter. Read more