pub struct TlsStream<IO>(/* private fields */);
Available on crate features
accept
and openssl
only.Expand description
Wraps an openssl
based async TLS stream in order to implement [ActixStream
].
Methods from Deref<Target = SslStream<IO>>§
sourcepub fn poll_connect(
self: Pin<&mut SslStream<S>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
Available on crate feature connect
only.
pub fn poll_connect( self: Pin<&mut SslStream<S>>, cx: &mut Context<'_> ) -> Poll<Result<(), Error>>
connect
only.Like SslStream::connect
.
sourcepub async fn connect(self: Pin<&mut SslStream<S>>) -> Result<(), Error>
Available on crate feature connect
only.
pub async fn connect(self: Pin<&mut SslStream<S>>) -> Result<(), Error>
connect
only.A convenience method wrapping poll_connect
.
sourcepub fn poll_accept(
self: Pin<&mut SslStream<S>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
Available on crate feature connect
only.
pub fn poll_accept( self: Pin<&mut SslStream<S>>, cx: &mut Context<'_> ) -> Poll<Result<(), Error>>
connect
only.Like SslStream::accept
.
sourcepub async fn accept(self: Pin<&mut SslStream<S>>) -> Result<(), Error>
Available on crate feature connect
only.
pub async fn accept(self: Pin<&mut SslStream<S>>) -> Result<(), Error>
connect
only.A convenience method wrapping poll_accept
.
sourcepub fn poll_do_handshake(
self: Pin<&mut SslStream<S>>,
cx: &mut Context<'_>
) -> Poll<Result<(), Error>>
Available on crate feature connect
only.
pub fn poll_do_handshake( self: Pin<&mut SslStream<S>>, cx: &mut Context<'_> ) -> Poll<Result<(), Error>>
connect
only.Like SslStream::do_handshake
.
sourcepub async fn do_handshake(self: Pin<&mut SslStream<S>>) -> Result<(), Error>
Available on crate feature connect
only.
pub async fn do_handshake(self: Pin<&mut SslStream<S>>) -> Result<(), Error>
connect
only.A convenience method wrapping poll_do_handshake
.
sourcepub fn poll_read_early_data(
self: Pin<&mut SslStream<S>>,
cx: &mut Context<'_>,
buf: &mut [u8]
) -> Poll<Result<usize, Error>>
Available on crate feature connect
and ossl111
only.
pub fn poll_read_early_data( self: Pin<&mut SslStream<S>>, cx: &mut Context<'_>, buf: &mut [u8] ) -> Poll<Result<usize, Error>>
connect
and ossl111
only.sourcepub async fn read_early_data(
self: Pin<&mut SslStream<S>>,
buf: &mut [u8]
) -> Result<usize, Error>
Available on crate feature connect
and ossl111
only.
pub async fn read_early_data( self: Pin<&mut SslStream<S>>, buf: &mut [u8] ) -> Result<usize, Error>
connect
and ossl111
only.A convenience method wrapping poll_read_early_data
.
sourcepub fn poll_write_early_data(
self: Pin<&mut SslStream<S>>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize, Error>>
Available on crate feature connect
and ossl111
only.
pub fn poll_write_early_data( self: Pin<&mut SslStream<S>>, cx: &mut Context<'_>, buf: &[u8] ) -> Poll<Result<usize, Error>>
connect
and ossl111
only.sourcepub async fn write_early_data(
self: Pin<&mut SslStream<S>>,
buf: &[u8]
) -> Result<usize, Error>
Available on crate feature connect
and ossl111
only.
pub async fn write_early_data( self: Pin<&mut SslStream<S>>, buf: &[u8] ) -> Result<usize, Error>
connect
and ossl111
only.A convenience method wrapping poll_write_early_data
.
sourcepub fn ssl(&self) -> &SslRef
Available on crate feature connect
only.
pub fn ssl(&self) -> &SslRef
connect
only.Returns a shared reference to the Ssl
object associated with this stream.
sourcepub fn get_ref(&self) -> &S
Available on crate feature connect
only.
pub fn get_ref(&self) -> &S
connect
only.Returns a shared reference to the underlying stream.
Trait Implementations§
source§impl<IO: ActixStream> AsyncWrite for TlsStream<IO>
impl<IO: ActixStream> AsyncWrite for TlsStream<IO>
source§fn poll_write(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &[u8]
) -> Poll<Result<usize>>
fn poll_write( self: Pin<&mut Self>, cx: &mut Context<'_>, buf: &[u8] ) -> Poll<Result<usize>>
Attempt to write bytes from
buf
into the object. Read moresource§fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Attempts to flush the object, ensuring that any buffered data reach
their destination. Read more
source§fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_shutdown(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Initiates or attempts to shut down this writer, returning success when
the I/O connection has completely shut down. Read more
source§fn poll_write_vectored(
self: Pin<&mut Self>,
cx: &mut Context<'_>,
bufs: &[IoSlice<'_>]
) -> Poll<Result<usize>>
fn poll_write_vectored( self: Pin<&mut Self>, cx: &mut Context<'_>, bufs: &[IoSlice<'_>] ) -> Poll<Result<usize>>
Like
poll_write
, except that it writes from a slice of buffers. Read moresource§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
Determines if this writer has an efficient
poll_write_vectored
implementation. Read moreAuto Trait Implementations§
impl<IO> Freeze for TlsStream<IO>
impl<IO> RefUnwindSafe for TlsStream<IO>where
IO: RefUnwindSafe,
impl<IO> Send for TlsStream<IO>where
IO: Send,
impl<IO> Sync for TlsStream<IO>where
IO: Sync,
impl<IO> Unpin for TlsStream<IO>where
IO: Unpin,
impl<IO> UnwindSafe for TlsStream<IO>where
IO: UnwindSafe,
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