Struct source_span::Position[][src]

pub struct Position {
    pub line: usize,
    pub column: usize,
}
Expand description

Position in a source file (line and column).

This holds the line and column position of a character in a source file. Some operations are available to move position in a file. In partular, the next method computes the next cursor position after reading a given char.

Display

The struct implements two different format traits:

  • fmt::Display will format the position as line {line} column {column}
  • fmt::Debug will format the position as {line}:{column}.

Both of them will display lines and columns starting at 1 even though the internal representation starts at 0.

Fields

line: usize
Expand description

Line number, starting at 0.

column: usize
Expand description

Column number, starting at 0.

Implementations

impl Position[src]

#[must_use]
pub const fn new(line: usize, column: usize) -> Self
[src]

Create a new position given a line and column.

Indexes starts at 0.

#[must_use]
pub const fn end() -> Self
[src]

Return the maximum position.

Example

use source_span::Position;

assert_eq!(
	Position::end(),
	Position::new(usize::max_value(), usize::max_value())
	);

#[must_use]
pub const fn next_column(&self) -> Self
[src]

Move to the next column.

#[must_use]
pub const fn reset_column(&self) -> Self
[src]

Move to the begining of the line.

#[must_use]
pub const fn next_line(&self) -> Self
[src]

Move to the next line, and reset the column position.

#[must_use]
pub fn next<M: Metrics>(&self, c: char, metrics: &M) -> Self
[src]

Move to the position following the given char using the given Metrics.

Control characters

This crate is intended to help with incremental lexing/parsing. Therefore, any control character moving the cursor backward will be ignored: it will be treated as a 0-width character with no semantics.

New lines

The \n character is interpreted with the Unix semantics, as the new line (NL) character. It will reset the column position to 0 and move to the next line.

Tabulations

The \t will move the cursor to the next horizontal tab-top. The length of a tab-stop (in columns) is given by the metrics parameter.

Full-width characters

Note that, as for now, double-width characters of full-width characters are not supported by the DefaultMetrics. They will move the cursor by only one column as any other regular-width character. You are welcome to contribute to handle them.

pub fn shift<M: Metrics>(&mut self, c: char, metrics: &M)[src]

Trait Implementations

impl Clone for Position[src]

fn clone(&self) -> Position[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Position[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Default for Position[src]

fn default() -> Position[src]

Returns the “default value” for a type. Read more

impl Display for Position[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl From<Position> for Span[src]

fn from(pos: Position) -> Self[src]

Performs the conversion.

impl Hash for Position[src]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl Ord for Position[src]

fn cmp(&self, other: &Position) -> Ordering[src]

This method returns an Ordering between self and other. Read more

#[must_use]
fn max(self, other: Self) -> Self
1.21.0[src]

Compares and returns the maximum of two values. Read more

#[must_use]
fn min(self, other: Self) -> Self
1.21.0[src]

Compares and returns the minimum of two values. Read more

#[must_use]
fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]

Restrict a value to a certain interval. Read more

impl PartialEq<Position> for Position[src]

fn eq(&self, other: &Position) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Position) -> bool[src]

This method tests for !=.

impl PartialOrd<Position> for Position[src]

fn partial_cmp(&self, other: &Position) -> Option<Ordering>[src]

This method returns an ordering between self and other values if one exists. Read more

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Copy for Position[src]

impl Eq for Position[src]

impl StructuralEq for Position[src]

impl StructuralPartialEq for Position[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.