Struct cssparser::parser::ParseError
source · pub struct ParseError<'i, E> {
pub kind: ParseErrorKind<'i, E>,
pub location: SourceLocation,
}
Expand description
Extensible parse errors that can be encountered by client parsing implementations.
Fields§
§kind: ParseErrorKind<'i, E>
Details of this error
location: SourceLocation
Location where this error occurred
Implementations§
source§impl<'i, T> ParseError<'i, T>
impl<'i, T> ParseError<'i, T>
sourcepub fn basic(self) -> BasicParseError<'i>
pub fn basic(self) -> BasicParseError<'i>
Extract the fundamental parse error from an extensible error.
sourcepub fn into<U>(self) -> ParseError<'i, U>where
T: Into<U>,
pub fn into<U>(self) -> ParseError<'i, U>where
T: Into<U>,
Like std::convert::Into::into
Trait Implementations§
source§impl<'i, E: Clone> Clone for ParseError<'i, E>
impl<'i, E: Clone> Clone for ParseError<'i, E>
source§fn clone(&self) -> ParseError<'i, E>
fn clone(&self) -> ParseError<'i, E>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'i, E: Debug> Debug for ParseError<'i, E>
impl<'i, E: Debug> Debug for ParseError<'i, E>
source§impl<'i, E: Display> Display for ParseError<'i, E>
impl<'i, E: Display> Display for ParseError<'i, E>
source§impl<'i, E: Display + Debug> Error for ParseError<'i, E>
impl<'i, E: Display + Debug> Error for ParseError<'i, E>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<'i, T> From<BasicParseError<'i>> for ParseError<'i, T>
impl<'i, T> From<BasicParseError<'i>> for ParseError<'i, T>
source§fn from(this: BasicParseError<'i>) -> ParseError<'i, T>
fn from(this: BasicParseError<'i>) -> ParseError<'i, T>
Converts to this type from the input type.
source§impl<'i, E: PartialEq> PartialEq for ParseError<'i, E>
impl<'i, E: PartialEq> PartialEq for ParseError<'i, E>
source§fn eq(&self, other: &ParseError<'i, E>) -> bool
fn eq(&self, other: &ParseError<'i, E>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'i, E> StructuralPartialEq for ParseError<'i, E>
Auto Trait Implementations§
impl<'i, E> Freeze for ParseError<'i, E>where
E: Freeze,
impl<'i, E> RefUnwindSafe for ParseError<'i, E>where
E: RefUnwindSafe,
impl<'i, E> !Send for ParseError<'i, E>
impl<'i, E> !Sync for ParseError<'i, E>
impl<'i, E> Unpin for ParseError<'i, E>where
E: Unpin,
impl<'i, E> UnwindSafe for ParseError<'i, E>where
E: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more