Docs.rs
ranvier-http-0.30.0
ranvier-http 0.30.0
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
realwolf
Dependencies
async-stream ^0.3.6
normal
async-trait ^0.1
normal
base64 ^0.22
normal
bytes ^1.11.0
normal
flate2 ^1
normal
futures-util ^0.3.31
normal
h3 ^0.0.8
normal
optional
h3-quinn ^0.0.10
normal
optional
http ^1.4.0
normal
http-body ^1
normal
http-body-util ^0.1.3
normal
hyper ^1.8.1
normal
hyper-util ^0.1.19
normal
matchit ^0.8
normal
multer ^3.1.0
normal
optional
quinn ^0.11
normal
optional
ranvier-core ^0.30.0
normal
ranvier-runtime ^0.30.0
normal
rcgen ^0.13
normal
optional
rustls ^0.23
normal
optional
rustls-pemfile ^2.1
normal
optional
serde ^1.0.228
normal
serde_json ^1.0.149
normal
serde_urlencoded ^0.7
normal
sha1 ^0.10
normal
thiserror ^1.0
normal
tokio ^1.49.0
normal
tokio-rustls ^0.26
normal
optional
tokio-tungstenite ^0.24
normal
tracing ^0.1.44
normal
uuid ^1.6
normal
validator ^0.20
normal
optional
tempfile ^3.14
dev
Versions
35%
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
Skip to main content
IntoResponse
ranvier_
http
0.30.0
Into
Response
Required Methods
into_response
Implementations on Foreign Types
&'static str
()
(StatusCode, &'static str)
(StatusCode, Bytes)
(StatusCode, Html)
(StatusCode, String)
Bytes
String
Value
Implementors
In ranvier_
http::
response
ranvier_http
::
response
Trait
Into
Response
Copy item path
Source
pub trait IntoResponse { // Required method fn
into_response
(self) ->
HttpResponse
; }
Required Methods
§
Source
fn
into_response
(self) ->
HttpResponse
Implementations on Foreign Types
§
Source
§
impl
IntoResponse
for &'static
str
Source
§
fn
into_response
(self) ->
HttpResponse
Source
§
impl
IntoResponse
for (
StatusCode
, &'static
str
)
Source
§
fn
into_response
(self) ->
HttpResponse
Source
§
impl
IntoResponse
for (
StatusCode
,
String
)
Source
§
fn
into_response
(self) ->
HttpResponse
Source
§
impl
IntoResponse
for (
StatusCode
,
Bytes
)
Source
§
fn
into_response
(self) ->
HttpResponse
Source
§
impl
IntoResponse
for (
StatusCode
,
Html
)
Source
§
fn
into_response
(self) ->
HttpResponse
Source
§
impl
IntoResponse
for
Value
Source
§
fn
into_response
(self) ->
HttpResponse
Source
§
impl
IntoResponse
for
()
Source
§
fn
into_response
(self) ->
HttpResponse
Source
§
impl
IntoResponse
for
String
Source
§
fn
into_response
(self) ->
HttpResponse
Source
§
impl
IntoResponse
for
Bytes
Source
§
fn
into_response
(self) ->
HttpResponse
Implementors
§
Source
§
impl
IntoResponse
for
Html
Source
§
impl
IntoResponse
for
ProblemDetail
Source
§
impl
IntoResponse
for
HttpResponse
Source
§
impl<S, E>
IntoResponse
for
Sse
<S>
where S:
Stream
<Item =
Result
<
SseEvent
, E>> +
Send
+
Sync
+
Unpin
+ 'static, E:
Into
<
Box
<dyn
Error
+
Send
+
Sync
>> +
Send
+
Sync
+ 'static,