Expand description
A utility crate built for the libqaul ecosystem
Note: unfortunately serde
is very re-export unfriendly, so you
will want to include serde = { version = "1.0", features = ["derive"] }
to your crate manually!
Structs§
- Cobs
- The
Cobs
flavor implements Consistent Overhead Byte Stuffing on the serialized data. The output of this flavor includes the termination/sentinel byte of0x00
. - StdVec
- The
StdVec
flavor is a wrapper type around astd::vec::Vec
.
Enums§
- Error
- This is the error type used by Postcard
Functions§
- deserialise
- Deserialise a byte array payload into a concrete type
- serialise
- Serialise any iteratable into a compacted binary payload
Type Aliases§
- Result
- This is the Result type used by Postcard.