wtx 0.45.0

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::{misc::IncompleteUtf8Char, web_socket::OpCode};

#[derive(Debug)]
pub(crate) struct IsInContinuationFrame {
  pub(crate) iuc: Option<IncompleteUtf8Char>,
  pub(crate) op_code: OpCode,
  pub(crate) should_decompress: bool,
}