pub trait TlsStreamWithSocketDyn<S>: TlsStreamDyn {
    fn get_socket_mut(&mut self) -> &mut S;
    fn get_socket_ref(&self) -> &S;
}
Expand description

Get the underlying socket.

Required Methods

Get the underlying socket.

Get the underlying socket.

Implementors