Type Alias mas_http::TracedConnector
source · pub type TracedConnector = HttpsConnector<HttpConnector<InFlightCounterService<DurationRecorderService<TraceService<GaiResolver, FnWrapper<fn(_: &Name) -> Span>>>>>>;
Aliased Type§
struct TracedConnector { /* private fields */ }
Implementations
source§impl<T> HttpsConnector<T>
impl<T> HttpsConnector<T>
sourcepub fn builder() -> ConnectorBuilder<WantsTlsConfig>
pub fn builder() -> ConnectorBuilder<WantsTlsConfig>
Creates a crate::HttpsConnectorBuilder
to configure a HttpsConnector
.
This is the same as crate::HttpsConnectorBuilder::new()
.
sourcepub fn enforce_https(&mut self)
pub fn enforce_https(&mut self)
Force the use of HTTPS when connecting.
If a URL is not https
when connecting, an error is returned.
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 copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
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>
§type Future = Pin<Box<dyn Future<Output = Result<MaybeHttpsStream<<T as Service<Uri>>::Response>, Box<dyn Error + Send + Sync>>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<MaybeHttpsStream<<T as Service<Uri>>::Response>, Box<dyn Error + Send + Sync>>> + Send>>
The future response value.