Docs.rs
radix-router-0.1.2
radix-router 0.1.2
Permalink
Docs.rs crate page
BSD-3-Clause
Links
Repository
crates.io
Source
Owners
SunDoge
Dependencies
futures ^0.1
normal
hyper ^0.12
normal
tokio-fs ^0.1
normal
tokio-io ^0.1
normal
pretty_env_logger ^0.2.4
dev
Versions
46%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
radix_
router
0.1.2
Handle
Required Methods
handle
Implementors
In radix_
router::
router
radix_router
::
router
Trait
Handle
Copy item path
Source
pub trait Handle { // Required method fn
handle
(&self, req:
Request
<
Body
>, ps:
Params
) ->
BoxFut
; }
Required Methods
§
Source
fn
handle
(&self, req:
Request
<
Body
>, ps:
Params
) ->
BoxFut
Implementors
§
Source
§
impl<F>
Handle
for F
where F:
Fn
(
Request
<
Body
>,
Params
) ->
BoxFut
,