[][src]Struct svgdom::ParseOptions

pub struct ParseOptions {
    pub skip_unresolved_classes: bool,
    pub skip_invalid_attributes: bool,
    pub skip_invalid_css: bool,
}

Options that defines SVG parsing.

Fields

skip_unresolved_classes: bool

Skip unresolved references inside the class attribute.

It's enabled by default, but if you disable it - all unresolved classes will be kept in the class attribute.

Default: true

skip_invalid_attributes: bool

Skip attributes with invalid values.

By default, attribute with an invalid value will lead to a parsing error. This flag allows converting this error into a warning.

Default: false

skip_invalid_css: bool

Skip invalid/unsupported CSS.

By default, CSS with an invalid/unsupported value will lead to a parsing error. This flag allows converting this error into a warning.

Default: false

Trait Implementations

impl Default for ParseOptions[src]

impl Debug for ParseOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]