Struct routerify::Route [−][src]
pub struct Route<B, E> { /* fields omitted */ }
Represents a single route.
A route consists of a path, http method type(s) and a handler. It shouldn’t be created directly, use RouterBuilder methods to create a route.
This Route<B, E>
type accepts two type parameters: B
and E
.
- The
B
represents the response body type which will be used by route handlers and the middlewares and this body type must implement the HttpBody trait. For an instance,B
could be hyper::Body type. - The
E
represents any error type which will be used by route handlers and the middlewares. This error type must implement the std::error::Error.
Examples
use routerify::Router; use hyper::{Response, Request, Body}; async fn home_handler(req: Request<Body>) -> Result<Response<Body>, hyper::Error> { Ok(Response::new(Body::from("home"))) } let router = Router::builder() // Create a route on "/" path for `GET` method. .get("/", home_handler) .build() .unwrap();
Trait Implementations
Auto Trait Implementations
impl<B, E> !RefUnwindSafe for Route<B, E>
impl<B, E> Send for Route<B, E>
impl<B, E> Sync for Route<B, E>
impl<B, E> Unpin for Route<B, E>
impl<B, E> !UnwindSafe for Route<B, E>
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]