Struct actix_net::ssl::NativeTlsAcceptor[][src]

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

Support SSL connections via native-tls package

tls feature enables NativeTlsAcceptor type

Methods

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

Create NativeTlsAcceptor instance

Trait Implementations

impl<T: AsyncRead + AsyncWrite> Clone for NativeTlsAcceptor<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: AsyncRead + AsyncWrite> NewService for NativeTlsAcceptor<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 NativeTlsAcceptor<T> where
    T: Send

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