[][src]Struct websocket::sync::stream::TlsStream

pub struct TlsStream<S>(_);

A stream managing a TLS session.

Methods

impl<S> TlsStream<S> where
    S: Read + Write
[src]

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

Returns a shared reference to the inner stream.

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

Returns a mutable reference to the inner stream.

pub fn buffered_read_size(&self) -> Result<usize, Error>[src]

Returns the number of bytes that can be read without resulting in any network calls.

pub fn peer_certificate(&self) -> Result<Option<Certificate>, Error>[src]

Returns the peer's leaf certificate, if available.

pub fn tls_server_end_point(&self) -> Result<Option<Vec<u8>>, Error>[src]

Returns the tls-server-end-point channel binding data as defined in RFC 5929.

pub fn shutdown(&mut self) -> Result<(), Error>[src]

Shuts down the TLS session.

Trait Implementations

impl<S> Debug for TlsStream<S> where
    S: Debug
[src]

impl<S> Read for TlsStream<S> where
    S: Read + Write
[src]

impl<S> Write for TlsStream<S> where
    S: Read + Write
[src]

impl AsTcpStream for TlsStream<TcpStream>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<S> IntoWs for S where
    S: Stream
[src]

type Stream = S

The type of stream this upgrade process is working with (TcpStream, etc.)

type Error = (S, Option<Incoming<(Method, RequestUri)>>, Option<Buffer>, HyperIntoWsError)

An error value in case the stream is not asking for a websocket connection or something went wrong. It is common to also include the stream here. Read more

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

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<R> ReadBytesExt for R where
    R: Read + ?Sized

impl<W> WriteBytesExt for W where
    W: Write + ?Sized

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<S> Stream for S where
    S: Read + Write
[src]

impl<S> NetworkStream for S where
    S: Read + Write + AsTcpStream
[src]