Crates.io | serde-xdr |
lib.rs | serde-xdr |
version | 0.6.0 |
source | src |
created_at | 2017-10-03 18:18:45.990127 |
updated_at | 2020-11-23 00:22:21.110091 |
description | XDR serialization and deserialization for Serde |
homepage | https://github.com/jvff/serde-xdr |
repository | |
max_upload_size | |
id | 34310 |
size | 137,277 |
This crate implements serialization and deserialization of the External Data Representation Standard (XDR) for the Serde serialization and deserialization framework.
To use the official version published on crates.io, add the following to
your Cargo.toml
file:
[dependencies]
serde-xdr = "0.6"
To serialize and deserialize data, you can use the provided helper functions:
xdr_serde::from_bytes(&mut bytes) -> Result<T>
xdr_serde::from_reader(&mut reader) -> Result<T>
xdr_serde::to_bytes(&object_to_serialize) -> Result<Vec<u8>>
xdr_serde::to_writer(&mut writer, &object_to_serialize) -> Result<()>
A more complete example is available in the documentation.
This crate should not be considered stable before more thorough real-world tests have been made. If you find any bugs or inconsistencies, please report them as GitHub issues.
One thing that is currently lacking tests is serialization and deserialization failure conditions.
Documentation also could be improved.