Expand description
Module to handle custom serde Serializer
Re-exports§
pub use crate::errors::serialize::SeError;
Structs§
- Serializer
- A Serializer.
- Simple
Type Serializer - A serializer for a values representing XSD simple types, which used in:
Enums§
- Quote
Level - Defines which characters would be escaped in
Textevents and attribute values. - Write
Result - Classification of the type written by the serializer.
Functions§
- to_
string - Serialize struct into a
String. - to_
string_ with_ root - Serialize struct into a
Stringusing specified root tag name.root_tagshould be valid XML name, otherwise error is returned. - to_
utf8_ io_ writer - Serialize struct into a
io::Writer restricted to utf-8 encoding. - to_
writer - Serialize struct into a
Writer. - to_
writer_ with_ root - Serialize struct into a
Writer using specified root tag name.root_tagshould be valid XML name, otherwise error is returned.