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, &mut bool);
fn into_io(self) -> Self::Io;
}