Module neodyn_xc::ser::text[][src]

Human-readable textual representation of the Neodyn Exchange format.

Structs

TextSerializer

Serde Serializer for the human-readable format.

Functions

to_bytes

Serializes a value to a byte buffer as the Neodyn Exchange text representation. indent will be used to pretty-print it if it is Some. Otherwise, if it is None, a compact representation will be emitted.

to_string

Serializes a value to a string as the Neodyn Exchange text representation. indent will be used to pretty-print it if it is Some. Otherwise, if it is None, a compact representation will be emitted.

to_writer

Serializes a value to a writer as the Neodyn Exchange text representation. indent will be used to pretty-print it if it is Some. Otherwise, if it is None, a compact representation will be emitted.

to_writer_buffered

The same as to_writer() except that it automatically performs buffering.