Enum rasterize::SvgPathParserError [−][src]
pub enum SvgPathParserError {
InvalidCmd(u8),
InvalidScalar,
InvalidFlag,
UnexpectedSegmentType,
IoError(Error),
}
Expand description
Error while parsing path in the SVG format
Variants
InvalidCmd(u8)
Failed to parse SVG command
Tuple Fields of InvalidCmd
0: u8
Failed to parse scalar value
Failed to parse flag value
Unexpected segment type found while parsing curve segment
IoError(Error)
IO error propagated while reading input stream
Tuple Fields of IoError
0: Error
Trait Implementations
Performs the conversion.