Expand description
Deserialization implementations
Structs§
- From
String Visitor - A visitor for deserializing types implementing
FromStr
- From
Visitor - Generic visitor for forwarding all calls to an inner visitor and converting into the target
type using its
From
implementation. - Optional
Visitor - A visitor for deserializing empty XML elements as an
Option::None
- Peeking
Reader - A wrapper around a
XmlReader
that supports peeking XML events without consuming them - TryFrom
Visitor - Generic visitor for forwarding all calls to an inner visitor and converting into the target
type using its
TryFrom
implementation.
Traits§
- FromXml
- Marks a type as being deserializable from XML
- Visitor
- A trait for building up instances of types during deserialization
- XmlFrom
Str - Marker trait for auto-implementing the
FromXml
trait based on theFromStr
-implementation of a type.
Type Aliases§
- XmlReader
- Type alias for the underlying reader