[][src]Struct routerify::RouterService

pub struct RouterService<B, E> { /* fields omitted */ }

A Service to process incoming requests.

This RouterService<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 hyper::{Body, Request, Response, Server};
use routerify::{Router, RouterService};
use std::convert::Infallible;
use std::net::SocketAddr;

// A handler for "/" page.
async fn home(_: Request<Body>) -> Result<Response<Body>, Infallible> {
    Ok(Response::new(Body::from("Home page")))
}

fn router() -> Router<Body, Infallible> {
    Router::builder()
        .get("/", home)
        .build()
        .unwrap()
}

#[tokio::main]
async fn main() {
    let router = router();

    // Create a Service from the router above to handle incoming requests.
    let service = RouterService::new(router).unwrap();

    let addr = SocketAddr::from(([127, 0, 0, 1], 3000));

    // Create a server by passing the created service to `.serve` method.
    let server = Server::bind(&addr).serve(service);

    println!("App is running on: {}", addr);
    if let Err(err) = server.await {
        eprintln!("Server error: {}", err);
   }
}

Methods

impl<B: HttpBody + Send + Sync + Unpin + 'static, E: Error + Send + Sync + Unpin + 'static> RouterService<B, E>[src]

pub fn new(router: Router<B, E>) -> Result<RouterService<B, E>>[src]

Creates a new service with the provided router and it's ready to be used with the hyper serve method.

Trait Implementations

impl<B: Debug, E: Debug> Debug for RouterService<B, E>[src]

impl<'_, B: HttpBody + Send + Sync + Unpin + 'static, E: Error + Send + Sync + Unpin + 'static> Service<&'_ AddrStream> for RouterService<B, E>[src]

type Response = RequestService<B, E>

Responses given by the service.

type Error = Infallible

Errors produced by the service.

type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>> + Send + 'static>>

The future response value.

Auto Trait Implementations

impl<B, E> !RefUnwindSafe for RouterService<B, E>

impl<B, E> Send for RouterService<B, E>

impl<B, E> Sync for RouterService<B, E>

impl<B, E> Unpin for RouterService<B, E>

impl<B, E> !UnwindSafe for RouterService<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.