Enum svgdom::Error [] [src]

pub enum Error {
    ElementMustHaveAnId,
    ElementCrosslink,
    NoSvgElement,
    EmptyDocument,
    UnsupportedCSS(ErrorPos),
    InvalidCSS(ErrorPos),
    UnsupportedEntity(ErrorPos),
    UnsupportedPaintFallback(String),
    BrokenFuncIri(String),
    MissingAttribute(StringString),
    SvgTypesError(Error),
    XmlError(Error),
    CssError(Error),
}

SVG DOM errors.

Variants

If you want to use referenced element inside link attribute, such element must have a non-empty ID.

Linked nodes can't reference each other or itself.

Examples

<linearGradient id="lg1" xlink:href="#lg2"/>
<linearGradient id="lg2" xlink:href="#lg1"/>

or

<linearGradient id="lg1" xlink:href="#lg1"/>

Parsed document must have an svg element.

Parsed document must have at least one node.

svgdom didn't support most of the CSS2 spec.

Error during parsing of the CSS2.

ENTITY with XML Element data is not supported.

We don't support a <paint> type with a fallback value and a valid FuncIRI.

Examples

<linearGradient id="lg1"/>
<rect fill="url(#lg1) red"/>

We don't support use elements with a broken filter attribute.

Failed to find an attribute, which must be set, during post-processing.

Error during attribute value parsing.

An XML stream error.

simplecss errors.

Trait Implementations

impl Fail for Error
[src]

[src]

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more

[src]

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more

[src]

Provides context for this failure. Read more

[src]

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more

Important traits for Causes<'f>
[src]

Returns a iterator over the causes of this Fail with itself as the first item and the root_cause as the final item. Read more

[src]

Returns the "root cause" of this Fail - the last value in the cause chain which does not return an underlying cause. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<Error> for Error
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error