Crate xt

Source
Expand description

Translations between serialized data formats.

xt is pre-1.0 software with an unstable library API!

To convert between serialized data formats in Rust code, consider the mature, stable, and widely-used serde_transcode crate instead.

Structs§

Error
An error encountered during translation.
Translator
Translates multiple inputs to a single serialized output.

Enums§

Format
The set of input and output formats supported by xt.

Functions§

translate_reader
Translates the contents of a single reader to a different format.
translate_slice
Translates the contents of a single input slice to a different format.

Type Aliases§

Result
Alias for a Result with the error type xt::Error.