Struct partiql_source_map::location::LineAndColumn
source · [−]pub struct LineAndColumn {
pub line: NonZeroUsize,
pub column: NonZeroUsize,
}Expand description
A 1-indexed line and column location intended for usage in errors/warnings/lints/etc.
Both line and column are 1-indexed, as that is how most people think of lines and columns.
Example
assert_eq!("Beginning of &str: 1:1",format!("Beginning of &str: {}", LineAndColumn::new(1, 1).unwrap()));Fields
line: NonZeroUsizeThe 1-indexed line absolute position (i.e., relative to the start of a &str)
column: NonZeroUsizeThe 1-indexed character absolute position (i.e., relative to the start of a &str)
Implementations
sourceimpl LineAndColumn
impl LineAndColumn
sourcepub fn new(line: usize, column: usize) -> Option<Self>
pub fn new(line: usize, column: usize) -> Option<Self>
Constructs at LineAndColumn if non-zero-index invariants, else None
sourcepub const unsafe fn new_unchecked(line: usize, column: usize) -> Self
pub const unsafe fn new_unchecked(line: usize, column: usize) -> Self
Constructs at LineAndColumn without verifying 1-indexed invariant (i.e. nonzero).
This results in undefined behaviour if either line or column is zero.
Safety
Both line and column values must not be zero.
Trait Implementations
sourceimpl Clone for LineAndColumn
impl Clone for LineAndColumn
sourcefn clone(&self) -> LineAndColumn
fn clone(&self) -> LineAndColumn
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for LineAndColumn
impl Debug for LineAndColumn
sourceimpl Display for LineAndColumn
impl Display for LineAndColumn
sourceimpl From<LineAndCharPosition> for LineAndColumn
impl From<LineAndCharPosition> for LineAndColumn
sourcefn from(_: LineAndCharPosition) -> Self
fn from(_: LineAndCharPosition) -> Self
Converts to this type from the input type.
sourceimpl Hash for LineAndColumn
impl Hash for LineAndColumn
sourceimpl Ord for LineAndColumn
impl Ord for LineAndColumn
sourcefn cmp(&self, other: &LineAndColumn) -> Ordering
fn cmp(&self, other: &LineAndColumn) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<LineAndColumn> for LineAndColumn
impl PartialEq<LineAndColumn> for LineAndColumn
sourcefn eq(&self, other: &LineAndColumn) -> bool
fn eq(&self, other: &LineAndColumn) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &LineAndColumn) -> bool
fn ne(&self, other: &LineAndColumn) -> bool
This method tests for !=.
sourceimpl PartialOrd<LineAndColumn> for LineAndColumn
impl PartialOrd<LineAndColumn> for LineAndColumn
sourcefn partial_cmp(&self, other: &LineAndColumn) -> Option<Ordering>
fn partial_cmp(&self, other: &LineAndColumn) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for LineAndColumn
impl Eq for LineAndColumn
impl StructuralEq for LineAndColumn
impl StructuralPartialEq for LineAndColumn
Auto Trait Implementations
impl RefUnwindSafe for LineAndColumn
impl Send for LineAndColumn
impl Sync for LineAndColumn
impl Unpin for LineAndColumn
impl UnwindSafe for LineAndColumn
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more