pub type SerializeError = SerializeError<XmlSerializeError>;Expand description
Error type for Atom serialization
Aliased Type§
pub enum SerializeError {
Backend(XmlSerializeError),
Reflect(ReflectError),
Unsupported(Cow<'static, str>),
Internal(Cow<'static, str>),
}Variants§
Backend(XmlSerializeError)
Format backend error.
Reflect(ReflectError)
Reflection failed while traversing the value.
Unsupported(Cow<'static, str>)
Value can’t be represented by the shared serializer.
Internal(Cow<'static, str>)
Internal invariant violation.