pub struct ParseError<'i> { /* private fields */ }
Expand description
An opaque filter parsing error associated with the original input.
For now, you can just print it in a debug or a human-readable fashion.
Trait Implementations§
Source§impl<'i> Debug for ParseError<'i>
impl<'i> Debug for ParseError<'i>
Source§impl<'i> Display for ParseError<'i>
impl<'i> Display for ParseError<'i>
Source§impl<'i> Error for ParseError<'i>
impl<'i> Error for ParseError<'i>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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> PartialEq for ParseError<'i>
impl<'i> PartialEq for ParseError<'i>
impl<'i> StructuralPartialEq for ParseError<'i>
Auto Trait Implementations§
impl<'i> Freeze for ParseError<'i>
impl<'i> RefUnwindSafe for ParseError<'i>
impl<'i> Send for ParseError<'i>
impl<'i> Sync for ParseError<'i>
impl<'i> Unpin for ParseError<'i>
impl<'i> UnwindSafe for ParseError<'i>
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
Source§impl<E> Fail for E
impl<E> Fail for E
Source§fn cause(&self) -> Option<&(dyn Fail + 'static)>
fn cause(&self) -> Option<&(dyn Fail + 'static)>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace
carried by this failure, if it
carries one. Read more