pub type TlsConnr = HttpsConnector<HttpConnector>;
Aliased Type§
pub struct TlsConnr { /* private fields */ }
Trait Implementations
Source§impl<T> Clone for HttpsConnector<T>where
T: Clone,
impl<T> Clone for HttpsConnector<T>where
T: Clone,
Source§fn clone(&self) -> HttpsConnector<T>
fn clone(&self) -> HttpsConnector<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<T> Debug for HttpsConnector<T>
impl<T> Debug for HttpsConnector<T>
Source§impl<H, C> From<(H, C)> for HttpsConnector<H>
impl<H, C> From<(H, C)> for HttpsConnector<H>
Source§fn from(_: (H, C)) -> HttpsConnector<H>
fn from(_: (H, C)) -> HttpsConnector<H>
Converts to this type from the input type.
Source§impl<T> Service<Uri> for HttpsConnector<T>
impl<T> Service<Uri> for HttpsConnector<T>
Source§type Response = MaybeHttpsStream<<T as Service<Uri>>::Response>
type Response = MaybeHttpsStream<<T as Service<Uri>>::Response>
Responses given by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<MaybeHttpsStream<<T as Service<Uri>>::Response>, Box<dyn Error + Sync + Send>>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<MaybeHttpsStream<<T as Service<Uri>>::Response>, Box<dyn Error + Sync + Send>>> + Send>>
The future response value.