Docs.rs
httpclient-0.26.1
httpclient 0.26.1
Docs.rs crate page
MIT
Links
Homepage
Repository
crates.io
Source
Owners
kurtbuilds
Dependencies
async-trait ^0.1.52
normal
bytes ^1.0
normal
cookie ^0.18.0
normal
futures ^0.3.25
normal
futures-core ^0.3.25
normal
http ^1.1.0
normal
http-body ^1.0
normal
http-body-util ^0.1
normal
indexmap ^2.1.0
normal
rand ^0.9.0
normal
regex ^1.7.1
normal
serde ^1.0.136
normal
serde_json ^1.0.79
normal
serde_qs ^0.14.0
normal
tracing ^0.1.37
normal
urlencoding ^2.1.0
normal
walkdir ^2.3.2
normal
text_io ^0.1.12
dev
tracing-subscriber ^0.3.19
dev
hyper ^1.0
normal
hyper-rustls ^0.27
normal
hyper-util ^0.1
normal
rustls ^0.23.0
normal
tokio ^1.17.0
normal
Versions
12.71%
of the crate is documented
Platform
i686-unknown-linux-gnu
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
Request
httpclient
0.26.1
Request
Aliased Type
Trait Implementations
RequestBuilderExt
RequestExt
In crate httpclient
httpclient
Type Alias
Request
Copy item path
Source
pub type Request<T =
Body
> =
Request
<T>;
Aliased Type
§
pub struct Request<T =
Body
> {
/* private fields */
}
Trait Implementations
§
Source
§
impl
RequestBuilderExt
for
Request
Source
§
fn
get
(uri: &
str
) ->
RequestBuilder
<'_,
()
>
Source
§
fn
post
(uri: &
str
) ->
RequestBuilder
<'_,
()
>
Source
§
fn
put
(uri: &
str
) ->
RequestBuilder
<'_,
()
>
Source
§
fn
delete
(uri: &
str
) ->
RequestBuilder
<'_,
()
>
Source
§
fn
head
(uri: &
str
) ->
RequestBuilder
<'_,
()
>
Source
§
impl<B>
RequestExt
for
Request
<B>
Source
§
fn
host
(&self) -> &
str
Source
§
fn
path
(&self) -> &
str
Source
§
fn
url
(&self) -> &
Uri
Source
§
fn
header
<H:
TryInto
<
HeaderName
>>(&self, h: H) ->
Option
<&
HeaderValue
>
Source
§
fn
header_str
<H:
TryInto
<
HeaderName
>>(&self, h: H) ->
Option
<&
str
>