Struct futures_rustls::client::TlsStream
source · pub struct TlsStream<IO> { /* private fields */ }
Expand description
A wrapper around an underlying raw stream which implements the TLS or SSL protocol.
Implementations§
source§impl<IO> TlsStream<IO>
impl<IO> TlsStream<IO>
pub fn get_ref(&self) -> (&IO, &ClientConnection)
pub fn get_mut(&mut self) -> (&mut IO, &mut ClientConnection)
pub fn into_inner(self) -> (IO, ClientConnection)
Trait Implementations§
source§impl<IO> AsyncRead for TlsStream<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> AsyncRead for TlsStream<IO>where IO: AsyncRead + AsyncWrite + Unpin,
source§impl<IO> AsyncWrite for TlsStream<IO>where
IO: AsyncRead + AsyncWrite + Unpin,
impl<IO> AsyncWrite for TlsStream<IO>where IO: AsyncRead + AsyncWrite + Unpin,
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>>
Note: that it does not guarantee the final data to be sent.
To be cautious, you must manually call flush
.
source§fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
fn poll_flush(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<()>>
Attempt to flush the object, ensuring that any buffered data reach
their destination. Read more