Docs.rs
maw-0.13.6
maw 0.13.6
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
Srlion
Dependencies
async-trait ^0.1
normal
backtrace ^0.3
normal
bytes ^1
normal
cookie ^0.18
normal
optional
erased-serde ^0.4
normal
flate2 ^1.1.5
normal
futures-core ^0.3.31
normal
http ^1
normal
http-body ^1.0.1
normal
http-body-util ^0.1
normal
hyper ^1
normal
hyper-util ^0.1
normal
matchit ^0.9
normal
mime_guess ^2
normal
minijinja ^2
normal
paste ^1
normal
quick-xml ^0.38
normal
serde ^1
normal
serde_json ^1
normal
serde_urlencoded ^0.7
normal
smol_str ^0.3
normal
thiserror ^2
normal
tokio ^1
normal
tokio-util ^0.7.17
normal
tracing ^0.1
normal
Versions
14.63%
of the crate is documented
Go to latest version
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
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
IntoResponse
maw
0.13.6
Into
Response
Required Methods
into_response
Implementations on Foreign Types
&'static [u8]
&'static str
()
Bytes
Cow<'static, [u8]>
Cow<'static, str>
Option<T>
Result<T, StatusError>
String
Vec<u8>
Implementors
In crate maw
maw
Trait
Into
Response
Copy item path
Source
pub trait IntoResponse { // Required method fn
into_response
(self, c: &mut
Ctx
); }
Required Methods
§
Source
fn
into_response
(self, c: &mut
Ctx
)
Implementations on Foreign Types
§
Source
§
impl
IntoResponse
for &'static
str
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Source
§
impl
IntoResponse
for &'static [
u8
]
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Source
§
impl
IntoResponse
for
Cow
<'static,
str
>
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Source
§
impl
IntoResponse
for
Cow
<'static, [
u8
]>
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Source
§
impl
IntoResponse
for
()
Source
§
fn
into_response
(self, _: &mut
Ctx
)
Source
§
impl
IntoResponse
for
String
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Source
§
impl
IntoResponse
for
Vec
<
u8
>
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Source
§
impl
IntoResponse
for
Bytes
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Source
§
impl<T>
IntoResponse
for
Option
<T>
where T:
IntoResponse
,
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Source
§
impl<T>
IntoResponse
for
Result
<T,
StatusError
>
where T:
IntoResponse
,
Source
§
fn
into_response
(self, c: &mut
Ctx
)
Implementors
§
Source
§
impl
IntoResponse
for
HttpBody