pub struct TextPos {
pub row: u32,
pub col: u32,
}
Expand description
Position in text.
Position indicates a row/line and a column in the original text. Starting from 1:1.
Fields§
§row: u32
§col: u32
Implementations§
Trait Implementations§
source§impl PartialEq for TextPos
impl PartialEq for TextPos
impl Copy for TextPos
impl Eq for TextPos
impl StructuralEq for TextPos
impl StructuralPartialEq for TextPos
Auto Trait Implementations§
impl RefUnwindSafe for TextPos
impl Send for TextPos
impl Sync for TextPos
impl Unpin for TextPos
impl UnwindSafe for TextPos
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