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§

SliceWriter
A simple slice writer (example implementation)

Enums§

SerError
A simple error type that can be used for SerWrite::Error implementations.

Traits§

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

Type Aliases§

SerResult