Enum cssparser::ParseErrorKind [−][src]
pub enum ParseErrorKind<'i, T: 'i> {
Basic(BasicParseErrorKind<'i>),
Custom(T),
}
Expand description
Details of a ParseError
Variants
Basic(BasicParseErrorKind<'i>)
Tuple Fields
0: BasicParseErrorKind<'i>
A fundamental parse error from a built-in parsing routine.
Custom(T)
A parse error reported by downstream consumer code.
Implementations
Like std::convert::Into::into
Trait Implementations
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> RefUnwindSafe for ParseErrorKind<'i, T> where
T: RefUnwindSafe,
impl<'i, T> !Send for ParseErrorKind<'i, T>
impl<'i, T> !Sync for ParseErrorKind<'i, T>
impl<'i, T> Unpin for ParseErrorKind<'i, T> where
T: Unpin,
impl<'i, T> UnwindSafe for ParseErrorKind<'i, T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more