pub struct SourcePos {
pub line: usize,
pub column: usize,
pub offset: usize,
}Expand description
Position information in the source code
Fields§
§line: usizeLine number (1-indexed)
column: usizeColumn number (1-indexed)
offset: usizeByte offset in the source
Implementations§
Trait Implementations§
impl Eq for SourcePos
impl StructuralPartialEq for SourcePos
Auto Trait Implementations§
impl Freeze for SourcePos
impl RefUnwindSafe for SourcePos
impl Send for SourcePos
impl Sync for SourcePos
impl Unpin for SourcePos
impl UnwindSafe for SourcePos
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