pub struct TlsStream<IO> { /* fields omitted */ }
Expand description
A wrapper around an underlying raw stream which implements the TLS or SSL
protocol.
Attempt to read from the AsyncRead into buf. Read more
Attempt to read from the AsyncRead into bufs using vectored
IO operations. Read more
Note: that it does not guarantee the final data to be sent.
To be cautious, you must manually call flush.
Attempt to flush the object, ensuring that any buffered data reach
their destination. Read more
Attempt to write bytes from bufs into the object using vectored
IO operations. Read more
Formats the value using the given formatter. Read more
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>,
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.