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>

source

pub fn builder() -> ConnectorBuilder<WantsTlsConfig>

Creates a crate::HttpsConnectorBuilder to configure a HttpsConnector.

This is the same as crate::HttpsConnectorBuilder::new().

source

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,

source§

fn clone(&self) -> HttpsConnector<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> Debug for HttpsConnector<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<H, C> From<(H, C)> for HttpsConnector<H>
where C: Into<Arc<ClientConfig>>,

source§

fn from(_: (H, C)) -> HttpsConnector<H>

Converts to this type from the input type.
source§

impl<T> Service<Uri> for HttpsConnector<T>
where T: Service<Uri>, <T as Service<Uri>>::Response: Connection + Read + Write + Send + Unpin + 'static, <T as Service<Uri>>::Future: Send + 'static, <T as Service<Uri>>::Error: Into<Box<dyn Error + Send + Sync>>,

§

type Response = MaybeHttpsStream<<T as Service<Uri>>::Response>

Responses given by the service.
§

type Error = Box<dyn Error + Send + Sync>

Errors produced by the service.
§

type Future = Pin<Box<dyn Future<Output = Result<MaybeHttpsStream<<T as Service<Uri>>::Response>, Box<dyn Error + Send + Sync>>> + Send>>

The future response value.
source§

fn poll_ready( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), <HttpsConnector<T> as Service<Uri>>::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call(&mut self, dst: Uri) -> <HttpsConnector<T> as Service<Uri>>::Future

Process the request and return the response asynchronously. Read more