pub struct ParseErrorFailure<'a> {
pub input: &'a str,
pub message: String,
}Expand description
A complete parsing failure along with the location the error occurred and the error message.
Fields§
§input: &'a str§message: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ParseErrorFailure<'a>
impl<'a> RefUnwindSafe for ParseErrorFailure<'a>
impl<'a> Send for ParseErrorFailure<'a>
impl<'a> Sync for ParseErrorFailure<'a>
impl<'a> Unpin for ParseErrorFailure<'a>
impl<'a> UnwindSafe for ParseErrorFailure<'a>
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