Skip to main content

LineIndex

Struct LineIndex 

Source
pub struct LineIndex { /* private fields */ }
Expand description

Line index for byte <-> (line, col) mapping.

Implementations§

Source§

impl LineIndex

Source

pub fn new(text: &str) -> LineIndex

Build a line index from UTF-8 text.

Source

pub fn byte_to_position(&self, byte: usize) -> (usize, usize)

Convert a byte offset to (line, column) using byte columns.

Source

pub fn position_to_byte(&self, line: usize, column: usize) -> Option<usize>

Convert (line, column) back to byte offset.

Returns None when the line is out of range or when the column extends past the end of the line (including the newline character, but not the start of the next line).

Source

pub fn position_to_byte_utf16( &self, text: &str, line: usize, column: usize, ) -> Option<usize>

Convert (line, column) back to byte offset where column is a UTF-16 code unit offset (the unit used by the LSP Position.character field).

This is the LSP-safe counterpart to position_to_byte, which uses raw byte columns. On lines that contain only ASCII, the two functions return identical results. On lines with multibyte UTF-8 characters the byte offset can be larger than the UTF-16 column number.

§Parameters
  • text — the original UTF-8 source text that was used to build this index. The caller must pass the same text that was given to new.
  • line — 0-based line number.
  • column — 0-based UTF-16 code unit offset from the start of the line.
§Return value

Returns None when:

  • line is out of range (same as position_to_byte).
  • column is past the end of the line (UTF-16 length of the line text).
  • column points into the middle of a UTF-16 surrogate pair (the interior of a supplementary character, U+10000..=U+10FFFF).

The returned byte offset is always on a UTF-8 character boundary.

Source

pub fn position_to_byte_checked( &self, line: usize, column: usize, ) -> Option<usize>

Convert (line, column) back to byte offset, returning None when the column crosses the line boundary.

The newline character at the end of a line is the last addressable column on that line. The byte at next_line_start belongs to the next line and is therefore out of range.

Trait Implementations§

Source§

impl Clone for LineIndex

Source§

fn clone(&self) -> LineIndex

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 Debug for LineIndex

Source§

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

Formats the value using the given formatter. Read more

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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more