Struct hyper_static_server::native_tls::TlsStream[][src]

pub struct TlsStream<S>(_);

A stream managing a TLS session.

Implementations

impl<S> TlsStream<S>[src]

pub fn get_ref(&self) -> &S

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

Returns a shared reference to the inner stream.

pub fn get_mut(&mut self) -> &mut S

Notable traits for &'_ mut F

impl<'_, F> Future for &'_ mut F where
    F: Unpin + Future + ?Sized
type Output = <F as Future>::Output;
[src]

Returns a mutable reference to the inner stream.

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

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, Global>>, Error>[src]

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

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

Returns the negotiated ALPN protocol.

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]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,