Struct partiql_source_map::location::LineAndCharPosition
source · [−]pub struct LineAndCharPosition {
pub line: LineOffset,
pub char: CharOffset,
}Expand description
A 0-indexed line & char absolute position (i.e., relative to the start of a &str)
Example
assert_eq!("Beginning of &str: LineAndCharPosition { line: LineOffset(0), char: CharOffset(0) }",
format!("Beginning of &str: {:?}", LineAndCharPosition::new(0, 0)));Fields
line: LineOffsetThe 0-indexed line absolute position (i.e., relative to the start of a &str)
char: CharOffsetThe 0-indexed character absolute position (i.e., relative to the start of a &str)
Implementations
sourceimpl LineAndCharPosition
impl LineAndCharPosition
sourcepub fn new(line: usize, char: usize) -> Self
pub fn new(line: usize, char: usize) -> Self
Constructs at LineAndCharPosition
Trait Implementations
sourceimpl Clone for LineAndCharPosition
impl Clone for LineAndCharPosition
sourcefn clone(&self) -> LineAndCharPosition
fn clone(&self) -> LineAndCharPosition
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 LineAndCharPosition
impl Debug for LineAndCharPosition
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 LineAndCharPosition
impl Hash for LineAndCharPosition
sourceimpl Ord for LineAndCharPosition
impl Ord for LineAndCharPosition
sourcefn cmp(&self, other: &LineAndCharPosition) -> Ordering
fn cmp(&self, other: &LineAndCharPosition) -> 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<LineAndCharPosition> for LineAndCharPosition
impl PartialEq<LineAndCharPosition> for LineAndCharPosition
sourcefn eq(&self, other: &LineAndCharPosition) -> bool
fn eq(&self, other: &LineAndCharPosition) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &LineAndCharPosition) -> bool
fn ne(&self, other: &LineAndCharPosition) -> bool
This method tests for !=.
sourceimpl PartialOrd<LineAndCharPosition> for LineAndCharPosition
impl PartialOrd<LineAndCharPosition> for LineAndCharPosition
sourcefn partial_cmp(&self, other: &LineAndCharPosition) -> Option<Ordering>
fn partial_cmp(&self, other: &LineAndCharPosition) -> 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 LineAndCharPosition
impl Eq for LineAndCharPosition
impl StructuralEq for LineAndCharPosition
impl StructuralPartialEq for LineAndCharPosition
Auto Trait Implementations
impl RefUnwindSafe for LineAndCharPosition
impl Send for LineAndCharPosition
impl Sync for LineAndCharPosition
impl Unpin for LineAndCharPosition
impl UnwindSafe for LineAndCharPosition
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