wtx 0.52.1

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
use crate::sync::{AtomicBool, AtomicU8, AtomicWaker};

#[derive(Debug)]
pub(crate) struct TlsStreamCommon {
  pub(crate) can_reply_key_update: AtomicBool,
  pub(crate) connection_state: AtomicU8,
  pub(crate) reader_waker: AtomicWaker,
}