Struct hyper_rustls::HttpsConnector [−][src]
pub struct HttpsConnector<T> { /* fields omitted */ }
A Connector for the https
scheme.
Implementations
impl HttpsConnector<HttpConnector>
[src]
impl HttpsConnector<HttpConnector>
[src]Trait Implementations
impl<T: Clone> Clone for HttpsConnector<T>
[src]
impl<T: Clone> Clone for HttpsConnector<T>
[src]fn clone(&self) -> HttpsConnector<T>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Default for HttpsConnector<HttpConnector>
[src]
impl Default for HttpsConnector<HttpConnector>
[src]impl<H, C> From<(H, C)> for HttpsConnector<H> where
C: Into<Arc<ClientConfig>>,
[src]
impl<H, C> From<(H, C)> for HttpsConnector<H> where
C: Into<Arc<ClientConfig>>,
[src]impl<T> Service<Uri> for HttpsConnector<T> where
T: Service<Uri>,
T::Response: Connection + AsyncRead + AsyncWrite + Send + Unpin + 'static,
T::Future: Send + 'static,
T::Error: Into<Box<dyn Error + Send + Sync>>,
[src]
impl<T> Service<Uri> for HttpsConnector<T> where
T: Service<Uri>,
T::Response: Connection + AsyncRead + AsyncWrite + Send + Unpin + 'static,
T::Future: Send + 'static,
T::Error: Into<Box<dyn Error + Send + Sync>>,
[src]type Response = MaybeHttpsStream<T::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::Response>, Box<dyn Error + Send + Sync>>> + Send>>
The future response value.
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
[src]
fn call(&mut self, dst: Uri) -> Self::Future
[src]
Auto Trait Implementations
impl<T> !RefUnwindSafe for HttpsConnector<T>
impl<T> Send for HttpsConnector<T> where
T: Send,
T: Send,
impl<T> Sync for HttpsConnector<T> where
T: Sync,
T: Sync,
impl<T> Unpin for HttpsConnector<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for HttpsConnector<T>
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> WithSubscriber for T
[src]
impl<T> WithSubscriber for T
[src]pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,