Expand description
Contains Serde Deserializer for XML simple types as defined in the XML Schema.
Macrosยง
- deserialize_
num ๐ - unsupported ๐
Structsยง
- Atomic
Deserializer ๐ - A deserializer that handles ordinary simple type definition with
{variety} = atomic, or an ordinary simple type definition with{variety} = unionwhose basic members are all atomic. - List
Iter ๐ - Iterator over string sub-slices delimited by one or several spaces.
Contains decoded value of the
simpleType. Iteration ends when list containsNone. - Simple
Type Deserializer - A deserializer for an xml probably escaped and encoded value of XSD simple types. This deserializer will borrow from the input as much as possible.
- Unit
Only - Deserializer of variant data, that supports only unit variants.
Attempt to deserialize newtype will provide
UnitDeserializer. Attempt to deserialize tuple or struct variant will result to call ofVisitor::visit_unit.