Crateserde [−][src]
Serde Serialization Framework
Serde is a powerful framework that enables serialization libraries to generically serializeRust data structures without the overhead of runtime type information. In many situations, thehandshake protocol between serializers and serializees can be completely optimized away,leaving serde to perform roughly the same speed as a hand written serializer for a specifictype.
For a detailed tutorial on the different ways to use serde please check out thegithub repository
Reexports
pub use ser::{Serialize,Serializer}; |
pub use de::{Deserialize,Deserializer,Error}; |
Modules
bytes | Helper module to enable serializing bytes more efficiently |
de | Generic deserialization framework. |
iter | Module that contains helper iterators. |
ser | Generic serialization framework. |
Macros
forward_to_deserialize | Helper to forward |