add .boxed_secure_connector for http client

This commit is contained in:
Nikolay Kim 2021-12-21 19:06:11 +06:00
parent 38258c5019
commit 6b8628a33d

View file

@ -210,6 +210,19 @@ impl Connector {
self
}
/// Use custom boxed connector to open secure connections.
pub fn boxed_secure_connector<T>(mut self, connector: T) -> Self
where
T: Service<
Request = TcpConnect<Uri>,
Response = IoBoxed,
Error = crate::connect::ConnectError,
> + 'static,
{
self.ssl_connector = Some(boxed::service(connector.map_err(ConnectError::from)));
self
}
/// Finish configuration process and create connector service.
/// The Connector builder always concludes by calling `finish()` last in
/// its combinator chain.