pub trait Builder<R> {
// Required methods
fn header(&mut self, key: &str, value: HeaderValue);
fn body(&mut self, bytes: Vec<u8>) -> Result<R>;
fn finish(&mut self) -> Result<R>;
}Available on crate features
http-binding or reqwest or axum or poem only.