[][src]Struct source_span::Position

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

Position in a source file.

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

Line number, starting at 0.

column: usize

Column number, starting at 0.

Methods

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(&self, c: char) -> Self[src]

Move to the position following the given char.

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. This function assumes there is a tab-stop every 8 columns. Note that there is no standard on the size of a tabulation, however a length of 8 columns seems typical.

As of today, there is no way to use another tab length.

I understand that this lacks of flexibility may become an issue in the near future, and I will try to add this possibility. In the meantime, you are very welcome to contribute if you need this feature right away.

Full-width characters

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

Trait Implementations

impl Clone for Position[src]

impl Copy for Position[src]

impl Debug for Position[src]

impl Default for Position[src]

impl Display for Position[src]

impl Eq for Position[src]

impl From<Position> for Span[src]

impl Hash for Position[src]

impl Ord for Position[src]

impl PartialEq<Position> for Position[src]

impl PartialOrd<Position> 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]

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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.