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

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

An event.

Variants

An error.

A tag.

A text.

A comment.

A declaration.

An instruction.