pub trait HttpServiceRequestBuilder<T: Send> { // Required method fn build(&self, request: HttpRequest<T>) -> Result<Request<Bytes>, Error>; }
HTTP request builder for HTTP stream sinks using the generic HttpService
HttpService