Enum cssparser::ParseErrorKind[][src]

pub enum ParseErrorKind<'i, T: 'i> {
    Basic(BasicParseErrorKind<'i>),
    Custom(T),
}

Details of a ParseError

Variants

A fundamental parse error from a built-in parsing routine.

A parse error reported by downstream consumer code.

Methods

impl<'i, T> ParseErrorKind<'i, T>
[src]

Like std::convert::Into::into

Trait Implementations

impl<'i, T: Clone + 'i> Clone for ParseErrorKind<'i, T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'i, T: Debug + 'i> Debug for ParseErrorKind<'i, T>
[src]

Formats the value using the given formatter. Read more

impl<'i, T: PartialEq + 'i> PartialEq for ParseErrorKind<'i, T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<'i, T> !Send for ParseErrorKind<'i, T>

impl<'i, T> !Sync for ParseErrorKind<'i, T>