[][src]Struct routerify::Route

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.

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

impl<B, E> Debug for Route<B, E>[src]

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> Any for T where
    T: 'static + ?Sized
[src]

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.