mirror of https://github.com/fafhrd91/actix-web
Replace `RequestHeadType::Rc(Rc<RequestHead>, Option<HeaderMap>)` with `RequestHeadType::Rc(Rc<RequestHead>, HeaderMap)`, using an empty HeaderMap as the default instead of None. This enables: - `RequestHeadType::extra_headers_mut()` for modifying headers on both Owned and Rc variants - `ConnectRequest::headers_mut()` for middleware to insert headers without destructuring the request Closes #2477 |
||
|---|---|---|
| .. | ||
| examples | ||
| src | ||
| tests | ||
| CHANGES.md | ||
| Cargo.toml | ||
| LICENSE-APACHE | ||
| LICENSE-MIT | ||
| README.md | ||
README.md
awc (Actix Web Client)
Async HTTP and WebSocket client library.
Examples
Example project using TLS-enabled client →
Basic usage:
use actix_rt::System;
use awc::Client;
fn main() {
System::new().block_on(async {
let client = Client::default();
let res = client
.get("http://www.rust-lang.org") // <- Create request builder
.insert_header(("User-Agent", "Actix-web"))
.send() // <- Send http request
.await;
println!("Response: {:?}", res); // <- server http response
});
}