ptlv 0.1.1

https://github.com/phodal/learn-rust
Documentation
  • Coverage
  • 0%
    0 out of 22 items documented0 out of 20 items with examples
  • Size
  • Source code size: 13.51 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.57 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Documentation
  • phodal/rust-in-practise
    3 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • phodal

TLV Rust

Type-Length-Value

c

The type and length are fixed in size (typically 1-4 bytes), and the value field is of variable size. These fields are used as follows:

Type

A binary code, often simply alphanumeric, which indicates the kind of field that this part of the message represents;

Length

The size of the value field (typically in bytes);

Value

Variable-sized series of bytes which contains data for this part of the message.

Documents