Struct actix_connect::ssl::rustls::RustlsConnectorService [−][src]
pub struct RustlsConnectorService<T, U> { /* fields omitted */ }
Trait Implementations
impl<T: Address, U> Service for RustlsConnectorService<T, U> where
U: AsyncRead + AsyncWrite + Unpin + Debug,
impl<T: Address, U> Service for RustlsConnectorService<T, U> where
U: AsyncRead + AsyncWrite + Unpin + Debug,
type Request = Connection<T, U>
type Request = Connection<T, U>
Requests handled by the service.
type Response = Connection<T, TlsStream<U>>
type Response = Connection<T, TlsStream<U>>
Responses given by the service.
type Future = ConnectAsyncExt<T, U>
type Future = ConnectAsyncExt<T, U>
The future response value.
Returns Ready
when the service is able to process requests. Read more
Process the request and return the response asynchronously. Read more
Map this service’s output to a different type, returning a new service of the resulting type. Read more
Auto Trait Implementations
impl<T, U> !RefUnwindSafe for RustlsConnectorService<T, U>
impl<T, U> Send for RustlsConnectorService<T, U> where
T: Send,
U: Send,
impl<T, U> Sync for RustlsConnectorService<T, U> where
T: Sync,
U: Sync,
impl<T, U> Unpin for RustlsConnectorService<T, U> where
T: Unpin,
U: Unpin,
impl<T, U> !UnwindSafe for RustlsConnectorService<T, U>
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert to a Service