Skip to main content

Position

Struct Position 

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

A position in a document.

Lines and columns are 1-based. Columns count Unicode scalar values in the line’s content; they are not UTF-8 byte offsets, grapheme clusters, or display cells. A line containing "café" therefore ends at column 5.

The end-of-line column is immediately before the complete line terminator. Column 1 of the following line is immediately after it. Consequently CRLF is atomic: no valid Position can point between \r and \n.

EOF is represented by the final line’s end column when the document has no trailing terminator, or by column 1 of the next line when it does.

Fields§

§line: usize

Line number (1-based)

§column: usize

Column number (1-based)

Implementations§

Source§

impl Position

Source

pub const fn line_start(line: usize) -> Self

Return column 1 of line.

Source

pub fn line_end(line: usize, line_content: &str) -> Self

Return the position immediately after line_content and before its terminator, if any.

Source

pub fn from_byte_offset_in_line( line: usize, line_content: &str, byte_offset: usize, ) -> Option<Self>

Convert a zero-based UTF-8 byte offset within one line to a scalar-based document position.

Returns None if byte_offset is outside line_content or is not a UTF-8 character boundary.

Source

pub fn to_byte_offset(self, content: &str) -> Option<usize>

Resolve this position to a zero-based UTF-8 byte offset in content.

Invalid line or column numbers, including positions inside CRLF, return None.

Source

pub fn from_byte_offset(content: &str, byte_offset: usize) -> Option<Self>

Convert a zero-based UTF-8 byte offset in content to a document position.

Offsets outside the document, in the middle of a UTF-8 scalar, or between the two bytes of a CRLF terminator return None.

Trait Implementations§

Source§

impl Clone for Position

Source§

fn clone(&self) -> Position

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Position

Source§

impl Debug for Position

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Eq for Position

Source§

impl PartialEq for Position

Source§

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

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Position

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Position

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.