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
9
use crate::tls::protocol::record_content_ty::RecordContentTy;

/// Returned by methods that fetch an external TLS record.
#[derive(Debug)]
pub struct ReadRecordInfo {
  pub(crate) inner_ty: RecordContentTy,
  pub(crate) outer_ty: RecordContentTy,
  pub(crate) plaintext_len: usize,
}