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::new()
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-layers.rs (line 57)
46fn main() {
47    let router = RouterBuilder::new()
48        .pre_layer(cors_pre_layer)
49        .post_layer(cors_post_layer)
50        .get("/", home)
51        .get("/about", about)
52        .fallback(not_found)
53        .build();
54
55    let listener = TcpListener::bind((Ipv4Addr::LOCALHOST, 8080))
56        .unwrap_or_else(|_| panic!("Can't bind to port"));
57    small_http::serve(listener, move |req| router.handle(req));
58}
examples/small-router-context.rs (line 56)
44fn main() {
45    let ctx = Context {
46        shared_data: Arc::new(RwLock::new("Hello".to_string())),
47    };
48    let router = RouterBuilder::with(ctx)
49        .get("/", home)
50        .get("/about", about)
51        .fallback(not_found)
52        .build();
53
54    let listener = TcpListener::bind((Ipv4Addr::LOCALHOST, 8080))
55        .unwrap_or_else(|_| panic!("Can't bind to port"));
56    small_http::serve(listener, move |req| router.handle(req));
57}

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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