pub struct AcceptorService { /* private fields */ }
Expand description
Native-TLS based acceptor service.
Trait Implementations§
source§impl<IO: ActixStream + 'static> Service<IO> for AcceptorService
impl<IO: ActixStream + 'static> Service<IO> for AcceptorService
source§type Error = TlsError<Error, Infallible>
type Error = TlsError<Error, Infallible>
Errors produced by the service when polling readiness or executing call.
source§type Future = Pin<Box<dyn Future<Output = Result<<AcceptorService as Service<IO>>::Response, <AcceptorService as Service<IO>>::Error>>>>
type Future = Pin<Box<dyn Future<Output = Result<<AcceptorService as Service<IO>>::Response, <AcceptorService as Service<IO>>::Error>>>>
The future response value.
Auto Trait Implementations§
impl Freeze for AcceptorService
impl !RefUnwindSafe for AcceptorService
impl !Send for AcceptorService
impl !Sync for AcceptorService
impl Unpin for AcceptorService
impl !UnwindSafe for AcceptorService
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for Swhere
S: Service<Req>,
§fn into_service(self) -> S
fn into_service(self) -> S
Convert to a
Service