[][src]Struct tokio_openssl::SslStream

pub struct SslStream<S>(_);

A wrapper around an underlying raw stream which implements the SSL protocol.

A SslStream<S> represents a handshake that has been completed successfully and both the server and the client are ready for receiving and sending data. Bytes read from a SslStream are decrypted from S and bytes written to a SslStream are encrypted when passing through to S.

Methods

impl<S> SslStream<S>[src]

pub fn ssl(&self) -> &SslRef[src]

Returns a shared reference to the Ssl object associated with this stream.

pub fn get_ref(&self) -> &S[src]

Returns a shared reference to the underlying stream.

pub fn get_mut(&mut self) -> &mut S[src]

Returns a mutable reference to the underlying stream.

Trait Implementations

impl<S: Debug> Debug for SslStream<S>[src]

impl<S> AsyncRead for SslStream<S> where
    S: AsyncRead + AsyncWrite + Unpin
[src]

fn poll_read_buf<B>(
    self: Pin<&mut Self>,
    cx: &mut Context,
    buf: &mut B
) -> Poll<Result<usize, Error>> where
    B: BufMut
[src]

Pull some bytes from this source into the specified BufMut, returning how many bytes were read. Read more

impl<S> AsyncWrite for SslStream<S> where
    S: AsyncRead + AsyncWrite + Unpin
[src]

fn poll_write_buf<B>(
    self: Pin<&mut Self>,
    cx: &mut Context,
    buf: &mut B
) -> Poll<Result<usize, Error>> where
    B: Buf
[src]

Write a Buf into this value, returning how many bytes were written. Read more

Auto Trait Implementations

impl<S> Sync for SslStream<S> where
    S: Sync

impl<S> Send for SslStream<S> where
    S: Send

impl<S> Unpin for SslStream<S> where
    S: Unpin

impl<S> RefUnwindSafe for SslStream<S> where
    S: RefUnwindSafe

impl<S> UnwindSafe for SslStream<S> where
    S: UnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]