Struct gluon_base::source::FileMap

source ·
pub struct FileMap { /* private fields */ }

Implementations§

source§

impl FileMap

source

pub fn new(name: String, source: String) -> Self

source

pub fn span(&self) -> Span<BytePos>

source

pub fn source(&self) -> &str

source

pub fn name(&self) -> &str

Trait Implementations§

source§

impl Debug for FileMap

source§

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

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

impl<'a> Files<'a> for FileMap

§

type FileId = ()

A unique identifier for files in the file provider. This will be used for rendering diagnostic::Labels in the corresponding source files.
§

type Name = String

The user-facing name of a file, to be displayed in diagnostics.
§

type Source = &'a str

The source code of a file.
source§

fn name(&self, _file_id: Self::FileId) -> Result<Self::Name>

The user-facing name of a file.
source§

fn source(&self, _file_id: Self::FileId) -> Result<&str>

The source code of a file.
source§

fn line_index(&self, file_id: Self::FileId, byte_index: usize) -> Result<usize>

The index of the line at the given byte index. If the byte index is past the end of the file, returns the maximum line index in the file. This means that this function only fails if the file is not present. Read more
source§

fn line_range( &self, file_id: Self::FileId, line_index: usize ) -> Result<Range<usize>>

The byte range of line in the source of the file.
§

fn line_number( &'a self, id: Self::FileId, line_index: usize ) -> Result<usize, Error>

The user-facing line number at the given line index. It is not necessarily checked that the specified line index is actually in the file. Read more
§

fn column_number( &'a self, id: Self::FileId, line_index: usize, byte_index: usize ) -> Result<usize, Error>

The user-facing column number at the given line index and byte index. Read more
§

fn location( &'a self, id: Self::FileId, byte_index: usize ) -> Result<Location, Error>

Convenience method for returning line and column number at the given byte index in the file.
source§

impl Source for FileMap

source§

fn location(&self, byte: BytePos) -> Option<Location>

Returns the line and column location of byte

source§

fn comment_start_before(&self, end: BytePos) -> BytePos

Returns the starting position of any comments and whitespace before end

source§

fn new(s: &str) -> Self
where Self: Sized,

source§

fn span(&self) -> Span<BytePos>

source§

fn src(&self) -> &str

source§

fn src_slice(&self, span: Span<BytePos>) -> &str

source§

fn byte_index(&self, line: Line, column: Column) -> Option<BytePos>

source§

fn line_number_at_byte(&self, pos: BytePos) -> Option<Line>

source§

fn comments_between(&self, span: Span<BytePos>) -> CommentIter<'_>

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<Id> AsId<Id> for Id
where Id: ?Sized,

source§

fn as_id(&self) -> &Id

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> 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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.
§

impl<T> Any for T
where T: Any,