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 details

The relevant slice of the input.

The line number and column number of the start of the relevant input slice.