Docs.rs
br-web-server-0.4.2
br-web-server 0.4.2
Permalink
Docs.rs crate page
MIT
Links
crates.io
Source
Owners
carryxd
Dependencies
br-crypto ^0.4.8
normal
chrono ^0.4
normal
dashmap ^6.1.0
normal
flate2 ^1.1
normal
hpack ^0.3.0
normal
json ^0.12.4
normal
log ^0.4
normal
openssl ^0.10.73
normal
serde ^1.0.225
normal
toml ^0.9.6
normal
env_logger ^0.11
dev
tokio ^1
dev
Versions
37.59%
of the crate is documented
Platform
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
HandlerClone
br_
web_
server
0.4.2
Handler
Clone
Required Methods
clone_box
Implementors
In crate br_
web_
server
br_web_server
Trait
Handler
Clone
Copy item path
Source
pub trait HandlerClone { // Required method fn
clone_box
(&self) ->
Box
<dyn
Handler
>; }
Required Methods
§
Source
fn
clone_box
(&self) ->
Box
<dyn
Handler
>
Implementors
§
Source
§
impl<T>
HandlerClone
for T
where T: 'static +
Handler
+
Clone
,