pub struct ParserErrorLocation {
pub line: u32,
pub column: u32,
pub len: u32,
/* private fields */
}Fields§
§line: u32at which line the error occurred
column: u32at which codepoints/columns the errors starts in the line
len: u32how many codepoints/columns the error takes up
Implementations§
Trait Implementations§
Source§impl Debug for ParserErrorLocation
impl Debug for ParserErrorLocation
Source§impl Display for ParserErrorLocation
impl Display for ParserErrorLocation
Source§impl PartialEq for ParserErrorLocation
impl PartialEq for ParserErrorLocation
impl Eq for ParserErrorLocation
impl StructuralPartialEq for ParserErrorLocation
Auto Trait Implementations§
impl Freeze for ParserErrorLocation
impl RefUnwindSafe for ParserErrorLocation
impl Send for ParserErrorLocation
impl Sync for ParserErrorLocation
impl Unpin for ParserErrorLocation
impl UnwindSafe for ParserErrorLocation
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