Struct cssparser::BasicParseError
[−]
[src]
pub struct BasicParseError<'i> {
pub kind: BasicParseErrorKind<'i>,
pub location: SourceLocation,
}The funamental parsing errors that can be triggered by built-in parsing routines.
Fields
kind: BasicParseErrorKind<'i>
Details of this error
location: SourceLocation
Location where this error occurred
Trait Implementations
impl<'i> Clone for BasicParseError<'i>[src]
fn clone(&self) -> BasicParseError<'i>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'i> Debug for BasicParseError<'i>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<'i> PartialEq for BasicParseError<'i>[src]
fn eq(&self, __arg_0: &BasicParseError<'i>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &BasicParseError<'i>) -> bool[src]
This method tests for !=.
impl<'i, T> From<BasicParseError<'i>> for ParseError<'i, T>[src]
fn from(this: BasicParseError<'i>) -> ParseError<'i, T>[src]
Performs the conversion.