A Response to a submitted [Request
].
Methods
Get the response as text.
let client = new;
let response = client.get
.body_bytes
.send
.await?;
let response = response.text .await?;
Get the response as bytes.
let client = new;
let response = client.get
.send
.await?;
let response = response.bytes .await?;
Get the status code of the response.