Struct fluvio_future::rust_tls::TlsAcceptor
source · [−]pub struct TlsAcceptor { /* private fields */ }Expand description
The TLS accepting part. The acceptor drives the server side of the TLS handshake process. It works on any asynchronous stream.
It provides a simple interface (accept), returning a future
that will resolve when the handshake process completed. On
success, it will hand you an async TLSStream.
Example
See /examples/server for an example.
Implementations
sourceimpl TlsAcceptor
impl TlsAcceptor
sourcepub fn accept<IO>(&self, stream: IO) -> Accept<IO>ⓘNotable traits for Accept<IO>impl<IO> Future for Accept<IO> where
IO: AsyncRead + AsyncWrite + Unpin, type Output = Result<TlsStream<IO>, Error>; where
IO: AsyncRead + AsyncWrite + Unpin,
pub fn accept<IO>(&self, stream: IO) -> Accept<IO>ⓘNotable traits for Accept<IO>impl<IO> Future for Accept<IO> where
IO: AsyncRead + AsyncWrite + Unpin, type Output = Result<TlsStream<IO>, Error>; where
IO: AsyncRead + AsyncWrite + Unpin,
IO: AsyncRead + AsyncWrite + Unpin, type Output = Result<TlsStream<IO>, Error>;
Accept a client connections. stream can be any type implementing AsyncRead and AsyncWrite,
such as TcpStreams or Unix domain sockets.
Otherwise, it will return a Accept Future, representing the Acceptance part of a
Tls handshake. It will resolve when the handshake is over.
Trait Implementations
sourceimpl Clone for TlsAcceptor
impl Clone for TlsAcceptor
sourcefn clone(&self) -> TlsAcceptor
fn clone(&self) -> TlsAcceptor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl From<Arc<ServerConfig>> for TlsAcceptor
impl From<Arc<ServerConfig>> for TlsAcceptor
sourcefn from(inner: Arc<ServerConfig>) -> TlsAcceptor
fn from(inner: Arc<ServerConfig>) -> TlsAcceptor
Converts to this type from the input type.
sourceimpl From<ServerConfig> for TlsAcceptor
impl From<ServerConfig> for TlsAcceptor
sourcefn from(inner: ServerConfig) -> TlsAcceptor
fn from(inner: ServerConfig) -> TlsAcceptor
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for TlsAcceptor
impl Send for TlsAcceptor
impl Sync for TlsAcceptor
impl Unpin for TlsAcceptor
impl !UnwindSafe for TlsAcceptor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output; where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output; where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more