Enum svgdom::ParserError[][src]

pub enum ParserError {
    NoSvgElement,
    UnsupportedCSS(TextPos),
    InvalidCSS(TextPos),
    UnexpectedCloseTag(StringString),
    DomError(Error),
    SvgTypesError(Error),
    XmlError(Error),
    RoXmlError(Error),
    CssError(Error),
}

SVG parsing errors.

Variants

Parsed document must have an svg element.

svgdom didn't support most of the CSS2 spec.

Error during parsing of the CSS2.

Unexpected close tag.

Examples

<svg>
    </rect>
</svg>

A DOM API error.

Error during attribute value parsing.

An XML stream error.

A roxmltree error.

simplecss errors.

Trait Implementations

impl Debug for ParserError
[src]

Formats the value using the given formatter. Read more

impl Display for ParserError
[src]

Formats the value using the given formatter. Read more

impl Error for ParserError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for ParserError
[src]

Performs the conversion.

impl From<Error> for ParserError
[src]

Performs the conversion.

impl From<Error> for ParserError
[src]

Performs the conversion.

impl From<Error> for ParserError
[src]

Performs the conversion.

impl From<Error> for ParserError
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ParserError

impl Sync for ParserError