pub struct TlsConnector(/* private fields */);Available on crate feature
tls only.Expand description
A wrapper around a native_tls::TlsConnector or rustls::ClientConfig,
providing an async connect method.
Implementations§
Source§impl TlsConnector
impl TlsConnector
Sourcepub async fn connect<S>(
&self,
domain: &str,
stream: S,
) -> Result<TlsStream<S>, Error>where
S: AsyncRead + AsyncWrite + 'static,
pub async fn connect<S>(
&self,
domain: &str,
stream: S,
) -> Result<TlsStream<S>, Error>where
S: AsyncRead + AsyncWrite + 'static,
Connects the provided stream with this connector, assuming the provided domain.
This function will internally call TlsConnector::connect to connect
the stream and returns a future representing the resolution of the
connection operation. The returned future will resolve to either
TlsStream<S> or Error depending if it’s successful or not.
This is typically used for clients who have already established, for example, a TCP connection to a remote server. That stream is then provided here to perform the client half of a connection to a TLS-powered server.
Trait Implementations§
Source§impl Clone for TlsConnector
impl Clone for TlsConnector
Source§fn clone(&self) -> TlsConnector
fn clone(&self) -> TlsConnector
Returns a duplicate 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 Debug for TlsConnector
impl Debug for TlsConnector
Source§impl From<Arc<ClientConfig>> for TlsConnector
Available on crate feature rustls only.
impl From<Arc<ClientConfig>> for TlsConnector
Available on crate feature
rustls only.Source§fn from(value: Arc<ClientConfig>) -> TlsConnector
fn from(value: Arc<ClientConfig>) -> TlsConnector
Converts to this type from the input type.
Source§impl From<TlsConnector> for TlsConnector
Available on crate feature native-tls only.
impl From<TlsConnector> for TlsConnector
Available on crate feature
native-tls only.Source§fn from(value: TlsConnector) -> TlsConnector
fn from(value: TlsConnector) -> TlsConnector
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TlsConnector
impl !RefUnwindSafe for TlsConnector
impl Send for TlsConnector
impl Sync for TlsConnector
impl Unpin for TlsConnector
impl !UnwindSafe for TlsConnector
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more