Struct Router

Source
pub struct Router<T: Clone>(/* private fields */);
Expand description

Router

Implementations§

Source§

impl<T: Clone> Router<T>

Source

pub fn handle(&self, req: &Request) -> Response

Handle request

Examples found in repository?
examples/small-router-simple.rs (line 38)
29fn main() {
30    let router = RouterBuilder::with(())
31        .get("/", home)
32        .get("/hello/:name", hello)
33        .fallback(not_found)
34        .build();
35
36    let listener = TcpListener::bind((Ipv4Addr::LOCALHOST, 8080))
37        .unwrap_or_else(|_| panic!("Can't bind to port"));
38    small_http::serve(listener, move |req| router.handle(req));
39}
More examples
Hide additional examples
examples/small-router-context.rs (line 45)
33fn main() {
34    let ctx = Context {
35        data: "Data".to_string(),
36    };
37    let router = RouterBuilder::with(ctx)
38        .get("/", home)
39        .get("/about", about)
40        .fallback(not_found)
41        .build();
42
43    let listener = TcpListener::bind((Ipv4Addr::LOCALHOST, 8080))
44        .unwrap_or_else(|_| panic!("Can't bind to port"));
45    small_http::serve(listener, move |req| router.handle(req));
46}
examples/small-router-layers.rs (line 65)
51fn main() {
52    let ctx = Context {
53        data: "Data".to_string(),
54    };
55    let router = RouterBuilder::with(ctx)
56        .pre_layer(cors_pre_layer)
57        .post_layer(cors_post_layer)
58        .get("/", home)
59        .get("/about", about)
60        .fallback(not_found)
61        .build();
62
63    let listener = TcpListener::bind((Ipv4Addr::LOCALHOST, 8080))
64        .unwrap_or_else(|_| panic!("Can't bind to port"));
65    small_http::serve(listener, move |req| router.handle(req));
66}

Trait Implementations§

Source§

impl<T: Clone + Clone> Clone for Router<T>

Source§

fn clone(&self) -> Router<T>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<T> Freeze for Router<T>

§

impl<T> RefUnwindSafe for Router<T>
where T: RefUnwindSafe,

§

impl<T> Send for Router<T>
where T: Sync + Send,

§

impl<T> Sync for Router<T>
where T: Sync + Send,

§

impl<T> Unpin for Router<T>

§

impl<T> UnwindSafe for Router<T>
where T: RefUnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T