pub fn builder_https<B, A>(
    authority: A
) -> Result<Builder<HttpsConnector<HttpConnector>, B>, HttpError>where
    B: HttpBody + Send,
    B::Data: Send,
    Authority: TryFrom<A>,
    <Authority as TryFrom<A>>::Error: Into<HttpError>,
Available on (crate features http1 or http2) and crate feature https only.
Expand description

Builder of ReusedService, with client::https_default().

For the meaning of “authority”, refer to the documentation of Uri.