☰
IntoHttpBytes
Required Methods
into_http_bytes
Implementations on Foreign Types
&[u8]
&str
()
Arc<[u8]>
Arc<str>
Box<[u8], Global>
Box<str, Global>
Bytes
Cow<'_, [u8]>
Rc<[u8]>
Rc<str>
String
Vec<u8, Global>
Implementors
In tea_sdk::runtime::http
?
Trait
tea_sdk
::
runtime
::
http
::
IntoHttpBytes
[
−
]
pub trait IntoHttpBytes { fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<impl
Scope
>>; }
Required Methods
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<impl
Scope
>>
Implementations on Foreign Types
§
§
impl
IntoHttpBytes
for
Box
<[
u8
],
Global
>
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
Arc
<
str
>
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for &[
u8
]
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
Box
<
str
,
Global
>
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
()
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
Cow
<'_, [
u8
]>
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for Bytes
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
Vec
<
u8
,
Global
>
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
Arc
<[
u8
]>
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
String
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
Rc
<[
u8
]>
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for
Rc
<
str
>
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
§
impl
IntoHttpBytes
for &
str
§
fn
into_http_bytes
(self) ->
Result
<
Vec
<
u8
,
Global
>,
Error
<
RuntimeCodec
>>
Implementors
§
§
impl<T>
IntoHttpBytes
for T
where
T:
Serialize
,
NotBytesWrapper<T>: NotBytes,