Enum svg::parser::Event
[−]
[src]
pub enum Event<'l> {
Error(Error),
Tag(&'l str, Type, Attributes),
Text(&'l str),
Comment,
Declaration,
Instruction,
}An event.
Variants
Error(Error)An error.
Tag(&'l str, Type, Attributes)A tag.
Text(&'l str)A text.
CommentA comment.
DeclarationA declaration.
InstructionAn instruction.