Traits§
- Serializable
- This trait allows for concrete instances to be serialized into binary data as specified by the Binary Data Serialization.
Type Aliases§
- Buffer
- The problem with being generic over
std::io::Writeis that it’s fallible, but in practice, we’re always going to serialize in-memory, so instead we just use aVec<u8>as our buffer.