wtx 0.50.0

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_type::RecordContentType;

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