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

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

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.