pub struct AcceptorService { /* private fields */ }Expand description
Rustls based acceptor service.
Trait Implementations
sourceimpl<IO: ActixStream> Service<IO> for AcceptorService
impl<IO: ActixStream> Service<IO> for AcceptorService
type Error = TlsError<Error, Infallible>
type Error = TlsError<Error, Infallible>
Errors produced by the service when polling readiness or executing call.
type Future = AcceptFut<IO>
type Future = AcceptFut<IO>
The future response value.
Auto Trait Implementations
impl !RefUnwindSafe for AcceptorService
impl !Send for AcceptorService
impl !Sync for AcceptorService
impl Unpin for AcceptorService
impl !UnwindSafe for AcceptorService
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
sourcefn into_service(self) -> S
fn into_service(self) -> S
Convert to a
Servicesourceimpl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
impl<S, Req> ServiceExt<Req> for Swhere
S: Service<Req>,
sourcefn map<F, R>(self, f: F) -> Map<Self, F, Req, R>where
Self: Sized,
F: FnMut(Self::Response) -> R,
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R>where
Self: Sized,
F: FnMut(Self::Response) -> R,
Map this service’s output to a different type, returning a new service
of the resulting type. Read more