Struct actix_net::ssl::RustlsAcceptor[][src]

pub struct RustlsAcceptor<T> { /* fields omitted */ }

Support SSL connections via rustls package

rust-tls feature enables RustlsAcceptor type

Methods

impl<T: AsyncRead + AsyncWrite> RustlsAcceptor<T>
[src]

Create RustlsAcceptor new service

Trait Implementations

impl<T> Clone for RustlsAcceptor<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: AsyncRead + AsyncWrite> NewService for RustlsAcceptor<T>
[src]

Requests handled by the service

Responses given by the service

Errors produced by the service

The Service value created by this factory

Errors produced while building a service.

The future of the Service instance.

Create and return a new service value asynchronously.

Auto Trait Implementations

impl<T> Send for RustlsAcceptor<T> where
    T: Send

impl<T> Sync for RustlsAcceptor<T> where
    T: Sync