opendal/raw/http_util/
mod.rs1mod client;
26pub use client::HttpClient;
27pub use client::HttpFetch;
28pub use client::HttpFetcher;
29
30#[allow(unused_imports)]
32pub(crate) use client::GLOBAL_REQWEST_CLIENT;
33
34mod body;
35pub use body::HttpBody;
36
37mod header;
38pub use header::build_header_value;
39pub use header::format_authorization_by_basic;
40pub use header::format_authorization_by_bearer;
41pub use header::format_content_md5;
42pub use header::parse_content_disposition;
43pub use header::parse_content_encoding;
44pub use header::parse_content_length;
45pub use header::parse_content_md5;
46pub use header::parse_content_range;
47pub use header::parse_content_type;
48pub use header::parse_etag;
49pub use header::parse_header_to_str;
50pub use header::parse_into_metadata;
51pub use header::parse_last_modified;
52pub use header::parse_location;
53pub use header::parse_multipart_boundary;
54pub use header::parse_prefixed_headers;
55
56mod uri;
57pub use uri::new_http_uri_invalid_error;
58pub use uri::percent_decode_path;
59pub use uri::percent_encode_path;
60
61mod error;
62pub use error::new_request_build_error;
63pub use error::new_request_credential_error;
64pub use error::new_request_sign_error;
65pub use error::with_error_response_context;
66
67mod bytes_range;
68pub use bytes_range::BytesRange;
69
70mod bytes_content_range;
71pub use bytes_content_range::BytesContentRange;
72
73mod multipart;
74pub use multipart::FormDataPart;
75pub use multipart::MixedPart;
76pub use multipart::Multipart;
77pub use multipart::Part;
78pub use multipart::RelatedPart;