Docs.rs
trailbase-wasm-0.5.1
trailbase-wasm 0.5.1
Permalink
Docs.rs crate page
OSL-3.0
Links
Homepage
Repository
crates.io
Source
Owners
ignatz
Dependencies
base64 ^0.22.1
normal
bytes ^1.10.1
normal
futures-util ^0.3.31
normal
http ^1.3.1
normal
log ^0.4.27
normal
serde ^1.0.203
normal
serde_json ^1.0.117
normal
serde_path_to_error ^0.1.19
normal
serde_urlencoded ^0.7.1
normal
static_assertions ^1.1.0
normal
thiserror ^2.0.14
normal
trailbase-sqlvalue ^0.1.0
normal
trailbase-wasm-common ^0.2.0
normal
url ^2.5.7
normal
wit-bindgen ^0.57.1
normal
wstd =0.5.6
normal
Versions
59.38%
of the crate is documented
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
Skip to main content
IntoResponse
trailbase_
wasm
0.5.1
Into
Response
Required Methods
into_response
Implementations on Foreign Types
Result<(), HttpError>
Result<B, HttpError>
Result<Json<T>, HttpError>
Result<Response<B>, Err>
Implementors
In trailbase_
wasm::
http
trailbase_wasm
::
http
Trait
Into
Response
Copy item path
Source
pub trait IntoResponse<B> { // Required method fn
into_response
(self) ->
Response
<B>; }
Required Methods
§
Source
fn
into_response
(self) ->
Response
<B>
Implementations on Foreign Types
§
Source
§
impl
IntoResponse
<
BoundedBody
<
Vec
<
u8
>>> for
Result
<
()
,
HttpError
>
Source
§
fn
into_response
(self) ->
Response
<
BoundedBody
<
Vec
<
u8
>>>
Source
§
impl<B:
IntoBody
<IntoBody =
BoundedBody
<
Vec
<
u8
>>>>
IntoResponse
<
BoundedBody
<
Vec
<
u8
>>> for
Result
<B,
HttpError
>
Source
§
fn
into_response
(self) ->
Response
<
BoundedBody
<
Vec
<
u8
>>>
Source
§
impl<B: Body, Err:
IntoResponse
<B>>
IntoResponse
<B> for
Result
<
Response
<B>, Err>
Source
§
fn
into_response
(self) ->
Response
<B>
Source
§
impl<T>
IntoResponse
<
BoundedBody
<
Vec
<
u8
>>> for
Result
<
Json
<T>,
HttpError
>
where T:
Serialize
,
Source
§
fn
into_response
(self) ->
Response
<
BoundedBody
<
Vec
<
u8
>>>
Implementors
§
Source
§
impl
IntoResponse
<
BoundedBody
<
Vec
<
u8
>>> for
HttpError
Source
§
impl<B:
IntoBody
>
IntoResponse
<<B as
IntoBody
>::
IntoBody
> for B
Source
§
impl<B: Body +
Default
>
IntoResponse
<B> for
Redirect
Source
§
impl<B: Body>
IntoResponse
<B> for
Response
<B>
Source
§
impl<T>
IntoResponse
<
BoundedBody
<
Vec
<
u8
>>> for
Html
<T>
where T:
IntoResponse
<
BoundedBody
<
Vec
<
u8
>>>,
Source
§
impl<T>
IntoResponse
<
BoundedBody
<
Vec
<
u8
>>> for
Json
<T>
where T:
Serialize
,