pub struct LenientError {
pub pos: usize,
pub message: String,
}
Expand description
A recoverable error and the position it happened at
Fields§
§pos: usize
§message: String
Trait Implementations§
Source§impl Debug for LenientError
impl Debug for LenientError
Source§impl PartialEq for LenientError
impl PartialEq for LenientError
impl StructuralPartialEq for LenientError
Auto Trait Implementations§
impl Freeze for LenientError
impl RefUnwindSafe for LenientError
impl Send for LenientError
impl Sync for LenientError
impl Unpin for LenientError
impl UnwindSafe for LenientError
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