Struct cssparser::PreciseParseError
[−]
[src]
pub struct PreciseParseError<'i, E: 'i> {
pub error: ParseError<'i, E>,
pub slice: &'i str,
pub location: SourceLocation,
}A parse error with details of where it occured
Fields
error: ParseError<'i, E>
Error details
slice: &'i str
The relevant slice of the input.
location: SourceLocation
The line number and column number of the start of the relevant input slice.