macro_rules! payload {
() => { ... };
($value:expr) => { ... };
}
Expand description
Create Payload struct - a #repr[transparent]
struct
wrapping Cursor<Vec<u8>>
. This struct acts as a helper
for storing and loading items into a Vec<u8>
buffer.