SerializeError

Type Alias SerializeError 

Source
pub type SerializeError = SerializeError<XmlSerializeError>;
Expand description

Error type for SVG serialization

Aliased Type§

pub enum SerializeError {
    Backend(XmlSerializeError),
    Reflect(ReflectError),
    Unsupported(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 DOM serializer.