Structs§
- A TLS frame, named TLSPlaintext in the standard.
- A message with decoded payload
- A TLS frame, named TLSPlaintext in the standard.
- A decrypted TLS frame
Enums§
Functions§
- To
readanEvaluatedTerm<PT>out of a bitstring, we cannot simply useCodec::read_bytessince the type of the value to be initialized is not known, we only have the argumenttyfrom which we can downcast and then callread_byteson the appropriate type.try_read_bytescalls a macrotry_readthat does this. (There is no workaround for the uninitialized value type since we need to make Codec traits into dyn objects, hence it cannot haveSizedas a supertrait.)