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
read
anEvaluatedTerm<PT>
out of a bitstring, we cannot simply useCodec::read_bytes
since the type of the value to be initialized is not known, we only have the argumentty
from which we can downcast and then callread_bytes
on the appropriate type.try_read_bytes
calls a macrotry_read
that does this. (There is no workaround for the uninitialized value type since we need to make Codec traits into dyn objects, hence it cannot haveSized
as a supertrait.)