Enum svg::parser::Event[][src]

pub enum Event<'l> {
    Error(Error),
    Tag(&'l strTypeAttributes),
    Text(&'l str),
    Comment,
    Declaration,
    Instruction,
}
Expand description

An event.

Variants

Error(Error)

An error.

Tag(&'l strTypeAttributes)

A tag.

Text(&'l str)

A text.

Comment

A comment.

Declaration

A declaration.

Instruction

An instruction.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.