[−][src]Struct hyper_tls::HttpsConnector
A Connector for the https scheme.
Methods
impl HttpsConnector<HttpConnector>[src]
impl HttpsConnector<HttpConnector>pub fn new(threads: usize) -> Result<Self, Error>[src]
pub fn new(threads: usize) -> Result<Self, Error>Construct a new HttpsConnector.
Takes number of DNS worker threads.
This uses hyper's default HttpConnector, and default TlsConnector.
If you wish to use something besides the defaults, use From::from.
Note
By default this connector will use plain HTTP if the URL provded uses the HTTP scheme (eg: http://example.com/).
If you would like to force the use of HTTPS then call https_only(true) on the returned connector.
impl<T> HttpsConnector<T>[src]
impl<T> HttpsConnector<T>pub fn https_only(&mut self, enable: bool)[src]
pub fn https_only(&mut self, enable: bool)Force the use of HTTPS when connecting.
If a URL is not https when connecting, an error is returned.
Trait Implementations
impl<T: Clone> Clone for HttpsConnector<T>[src]
impl<T: Clone> Clone for HttpsConnector<T>fn clone(&self) -> HttpsConnector<T>[src]
fn clone(&self) -> HttpsConnector<T>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<T> From<(T, TlsConnector)> for HttpsConnector<T>[src]
impl<T> From<(T, TlsConnector)> for HttpsConnector<T>fn from(args: (T, TlsConnector)) -> HttpsConnector<T>[src]
fn from(args: (T, TlsConnector)) -> HttpsConnector<T>Performs the conversion.
impl<T: Debug> Debug for HttpsConnector<T>[src]
impl<T: Debug> Debug for HttpsConnector<T>fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T> Connect for HttpsConnector<T> where
T: Connect<Error = Error>,
T::Transport: 'static,
T::Future: 'static, [src]
impl<T> Connect for HttpsConnector<T> where
T: Connect<Error = Error>,
T::Transport: 'static,
T::Future: 'static, type Transport = MaybeHttpsStream<T::Transport>
The connected IO Stream.
type Error = Error
An error occured when trying to connect.
type Future = HttpsConnecting<T::Transport>
A Future that will resolve to the connected Transport.
fn connect(&self, dst: Destination) -> Self::Future[src]
fn connect(&self, dst: Destination) -> Self::FutureConnect to a destination.
Auto Trait Implementations
impl<T> Send for HttpsConnector<T> where
T: Send,
impl<T> Send for HttpsConnector<T> where
T: Send, impl<T> Sync for HttpsConnector<T> where
T: Sync,
impl<T> Sync for HttpsConnector<T> where
T: Sync, Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> Erased for T[src]
impl<T> Erased for T