pub struct ParseErrorSimple {
pub pos: usize,
pub message: String,
pub recovered: bool,
}Expand description
Represents a parse error with position and message.
Fields§
§pos: usize§message: String§recovered: boolImplementations§
Trait Implementations§
Source§impl Clone for ParseErrorSimple
impl Clone for ParseErrorSimple
Source§fn clone(&self) -> ParseErrorSimple
fn clone(&self) -> ParseErrorSimple
Returns a duplicate 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 Debug for ParseErrorSimple
impl Debug for ParseErrorSimple
Auto Trait Implementations§
impl Freeze for ParseErrorSimple
impl RefUnwindSafe for ParseErrorSimple
impl Send for ParseErrorSimple
impl Sync for ParseErrorSimple
impl Unpin for ParseErrorSimple
impl UnsafeUnpin for ParseErrorSimple
impl UnwindSafe for ParseErrorSimple
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