pub(super) type ClientContext<'a> = Context<'a, ClientConnectionData>;Aliased Type§
pub(super) struct ClientContext<'a> {
pub(crate) common: &'a mut CommonState,
pub(crate) data: &'a mut ClientConnectionData,
pub(crate) sendable_plaintext: Option<&'a mut ChunkVecBuffer>,
}Fields§
§common: &'a mut CommonState§data: &'a mut ClientConnectionData§sendable_plaintext: Option<&'a mut ChunkVecBuffer>Buffered plaintext. This is Some if any plaintext was written during handshake and None
otherwise.