Trait tokio_rustls::common::handshake::IoSession
source · pub(crate) trait IoSession {
type Io;
type Session;
// Required methods
fn skip_handshake(&self) -> bool;
fn get_mut(&mut self) -> (&mut TlsState, &mut Self::Io, &mut Self::Session);
fn into_io(self) -> Self::Io;
}