pub trait SessionTicketCallback: 'static + Send + Sync {
    // Required method
    fn on_session_ticket(
        &self,
        connection: &mut Connection,
        session_ticket: &SessionTicket
    );
}
Expand description

A trait to retrieve session tickets from the connection

Required Methods§

source

fn on_session_ticket( &self, connection: &mut Connection, session_ticket: &SessionTicket )

Implementors§