Docs.rs
maw-0.18.0
maw 0.18.0
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
Srlion
Dependencies
bytes ^1.11.0
normal
constant_time_eq ^0.4.2
normal
optional
cookie ^0.18.1
normal
optional
erased-serde ^0.4.9
normal
optional
futures-core ^0.3.31
normal
http ^1.4.0
normal
http-body ^1.0.1
normal
http-body-util ^0.1.3
normal
hyper ^1.8.1
normal
hyper-util ^0.1.19
normal
matchit ^0.9.1
normal
mime_guess ^2.0.5
normal
minijinja ^2.14.0
normal
optional
paste ^1.0.15
normal
pin-project-lite ^0.2.16
normal
optional
quick-xml ^0.39.0
normal
optional
rand ^0.9.2
normal
optional
serde ^1.0.228
normal
serde_json ^1.0.149
normal
serde_urlencoded ^0.7.1
normal
smol_str ^0.3.5
normal
thiserror ^2.0.18
normal
tokio ^1.49.0
normal
tokio-util ^0.7.18
normal
tracing ^0.1.44
normal
Versions
13.64%
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.18.0
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