pub trait HttpRequestSend {
type Body;
// Required method
fn send(self) -> HttpRequestSender<Self::Body>;
}Available on crate feature
http_support only.Expand description
A extension trait for http Request builder.