Struct actix_tls::connect::rustls_0_23::TlsConnectorService
source · pub struct TlsConnectorService { /* private fields */ }
Available on crate features
connect
and rustls-0_23
only.Expand description
Connector service using rustls
.
Trait Implementations§
source§impl Clone for TlsConnectorService
impl Clone for TlsConnectorService
source§fn clone(&self) -> TlsConnectorService
fn clone(&self) -> TlsConnectorService
Returns a copy 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<R, IO> Service<Connection<R, IO>> for TlsConnectorServicewhere
R: Host,
IO: ActixStream,
impl<R, IO> Service<Connection<R, IO>> for TlsConnectorServicewhere
R: Host,
IO: ActixStream,
Auto Trait Implementations§
impl Freeze for TlsConnectorService
impl !RefUnwindSafe for TlsConnectorService
impl Send for TlsConnectorService
impl Sync for TlsConnectorService
impl Unpin for TlsConnectorService
impl !UnwindSafe for TlsConnectorService
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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
source§fn into_service(self) -> S
fn into_service(self) -> S
Convert to a
Service
source§impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
source§fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>
Map this service’s output to a different type, returning a new service
of the resulting type. Read more