pub struct SourcePos {
pub line: usize,
pub column: usize,
}Fields§
§line: usize1-indexed line (matches serde_json and editor conventions).
column: usize1-indexed column (matches serde_json).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SourcePos
impl RefUnwindSafe for SourcePos
impl Send for SourcePos
impl Sync for SourcePos
impl Unpin for SourcePos
impl UnsafeUnpin 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