Closed sungjun0405 closed 1 year ago
solved my question. I just learned and had a lack of understanding about Newtype .
let https = HttpsConnector::<HttpConnector>::from((
http,
tokio_native_tls::TlsConnector::from(tls_connector),
));
Hello~ I would like to set the self signed certificate to client and connect. If you look at the impl, you can set the TlsConnector created through from. However, when I try the direct implementation, it fails and throws an error because the trait bounds don't match. Can't it be set using the hyper_tls::native_tls::TlsConnector build?