pub struct HttpsConnector<T> { /* private fields */ }
Expand description

A Connector using OpenSSL to support http and https schemes.

Implementations§

source§

impl HttpsConnector<HttpConnector>

source

pub fn new() -> Result<HttpsConnector<HttpConnector>, ErrorStack>

Available on crate feature runtime only.

Creates a a new HttpsConnector using default settings.

The Hyper HttpConnector is used to perform the TCP socket connection. ALPN is configured to support both HTTP/2 and HTTP/1.1.

Requires the runtime Cargo feature.

source§

impl<S, T> HttpsConnector<S>
where S: Service<Uri, Response = T> + Send, S::Error: Into<Box<dyn Error + Send + Sync>>, S::Future: Unpin + Send + 'static, T: AsyncRead + AsyncWrite + Connection + Unpin + Debug + Sync + Send + 'static,

source

pub fn with_connector( http: S, ssl: SslConnectorBuilder ) -> Result<HttpsConnector<S>, ErrorStack>

Creates a new HttpsConnector.

The session cache configuration of ssl will be overwritten.

source

pub fn set_callback<F>(&mut self, callback: F)
where F: Fn(&mut ConnectConfiguration, &Uri) -> Result<(), ErrorStack> + 'static + Sync + Send,

Registers a callback which can customize the configuration of each connection.

Unsuitable to change verify hostflags (with config.param_mut().set_hostflags(…)), as they are reset after the callback is executed. Use Self::set_ssl_callback instead.

source

pub fn set_ssl_callback<F>(&mut self, callback: F)
where F: Fn(&mut SslRef, &Uri) -> Result<(), ErrorStack> + 'static + Sync + Send,

Registers a callback which can customize the Ssl of each connection.

Trait Implementations§

source§

impl<T: Clone> Clone for HttpsConnector<T>

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<S> Service<Uri> for HttpsConnector<S>
where S: Service<Uri> + Send, S::Error: Into<Box<dyn Error + Send + Sync>>, S::Future: Unpin + Send + 'static, S::Response: AsyncRead + AsyncWrite + Connection + Unpin + Debug + Sync + Send + 'static,

§

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

Responses given by the service.
§

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

Errors produced by the service.
§

type Future = Pin<Box<dyn Future<Output = Result<<HttpsConnector<S> as Service<Uri>>::Response, <HttpsConnector<S> as Service<Uri>>::Error>> + Send>>

The future response value.
source§

fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

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

fn call(&mut self, uri: Uri) -> Self::Future

Process the request and return the response asynchronously. Read more

Auto Trait Implementations§

§

impl<T> Freeze for HttpsConnector<T>
where T: Freeze,

§

impl<T> !RefUnwindSafe for HttpsConnector<T>

§

impl<T> Send for HttpsConnector<T>
where T: Send,

§

impl<T> Sync for HttpsConnector<T>
where T: Sync,

§

impl<T> Unpin for HttpsConnector<T>
where T: Unpin,

§

impl<T> !UnwindSafe for HttpsConnector<T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more