Crate ser_write

source ·
Expand description

Tools for implementing writer style serializers dedicated for no_std targets.

Features a trait for objects which are byte-oriented sinks, akin to std::io::Write.

Serializers can be implemented using this trait as a writer.

Embedded or otherwise no_std projects can implement SerWrite for custom sinks.

Some implemenentations for foreign types are provided depending on the enabled features.

Structs§

  • A simple slice writer (example implementation)

Enums§

Traits§

  • Serializers should write data to the implementations of this trait.

Type Aliases§