Struct source_span::Position [−][src]
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::Displaywill format the position asline {line} column {column}fmt::Debugwill 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: usizeExpand description
Line number, starting at 0.
column: usizeExpand description
Column number, starting at 0.
Implementations
impl Position[src]
impl Position[src]#[must_use]pub const fn new(line: usize, column: usize) -> Self[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]
#[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]
#[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]
#[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]
#[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]
#[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 Ord for Position[src]
impl Ord for Position[src]impl PartialOrd<Position> for Position[src]
impl PartialOrd<Position> for Position[src]fn partial_cmp(&self, other: &Position) -> Option<Ordering>[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) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.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) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less 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
impl RefUnwindSafe for Position
impl Send for Position
impl Sync for Position
impl Unpin for Position
impl UnwindSafe for Position
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
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]
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