Struct actix_tls::connect::ssl::rustls::RustlsConnectorService [−][src]
Trait Implementations
impl Clone for RustlsConnectorService[src]
fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<T, U> Service<Connection<T, U>> for RustlsConnectorService where
T: Address,
U: ActixStream, [src]
T: Address,
U: ActixStream,
type Response = Connection<T, TlsStream<U>>
Responses given by the service.
type Error = Error
Errors produced by the service when polling readiness or executing call.
type Future = RustlsConnectorServiceFuture<T, U>
The future response value.
fn poll_ready(&self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>>[src]
fn call(&self, connection: Connection<T, U>) -> Self::Future[src]
Auto Trait Implementations
impl !RefUnwindSafe for RustlsConnectorService
impl Send for RustlsConnectorService
impl Sync for RustlsConnectorService
impl Unpin for RustlsConnectorService
impl !UnwindSafe for RustlsConnectorService
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<S, Req> IntoService<S, Req> for S where
S: Service<Req>, [src]
S: Service<Req>,
pub fn into_service(self) -> S[src]
impl<S, Req> ServiceExt<Req> for S where
S: Service<Req>, [src]
S: Service<Req>,
pub fn map<F, R>(self, f: F) -> Map<Self, F, Req, R> where
F: FnMut(Self::Response) -> R, [src]
F: FnMut(Self::Response) -> R,
pub fn map_err<F, E>(self, f: F) -> MapErr<Self, Req, F, E> where
F: Fn(Self::Error) -> E, [src]
F: Fn(Self::Error) -> E,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,