1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//! # http-client
//! > A small library for making HTTP requests
//! Designed to be a small, simple, and easy to use library for making HTTP requests.
//! Supports all key features of HTTP
//! Can be used synchronously or asynchronously (for example with `tokio`)
/// Request Builder type, allowing creation of a request
/// import the builder trait, to make the exposed builder trait available
pub use ValidBuilder;
/// Request type, designed to be generated from a builder
/// import the request trait, to make the exposed request trait available
pub use ValidRequest;
/// Response type, designed to be generated from a request
/// import the response trait, to make the exposed response trait available
pub use ValidResponse;
/// Error type, designed to be generated from a response
/// status code types, designed to be used in the response field
/// import the status code enum
pub use StatusCode;