An asynchronous Client to make Requests with.
Methods
Construct a builder to GET the given url.
Examples
let client = new;
let response = client.get
.send
.await?;
let response = response.text.await?;
Construct a builder to POST to the given url.
Examples
let client = new;
let response = client.post
.body_bytes
.send
.await?;
let response = response.json.await?;