Available on crate feature serialize only.
Expand description

Serde Deserializer module

Structs

A structure that deserializes XML into Rust values.

XML input source that reads from a std::io input stream.

XML input source that reads from a slice of bytes and can borrow from it.

Enums

(De)serialization error

Simplified event which contains only these variants that used by deserializer

Traits

Trait used by the deserializer for iterating over input. This is manually “specialized” for iterating over &[u8].

Functions

Deserialize from a reader. This method will do internal copies of data readed from reader. If you want have a &str input and want to borrow as much as possible, use from_str.

Deserialize an instance of type T from a string of XML text.