[][src]Crate conjoiner_engine

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 of 0x00.

StdVec

The StdVec flavor is a wrapper type around a std::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 Definitions

Result

This is the Result type used by Postcard.