PreprocessedFile

Struct PreprocessedFile 

Source
pub struct PreprocessedFile<Source> { /* private fields */ }
Expand description

The codemap of a preprocessed file.

Implementations§

Source§

impl<Source> PreprocessedFile<Source>
where Source: AsRef<str>,

Source

pub fn new(contents: Source) -> Self

Source

pub fn source(&self) -> &str

Source

pub fn len(&self) -> usize

Source

pub fn is_empty(&self) -> bool

Source§

impl PreprocessedFile<String>

Source

pub fn open<P: AsRef<Path>>(filename: P) -> Result<Self, Error>

Source

pub fn from_stdin() -> Result<Self, Error>

Trait Implementations§

Source§

impl<Source: Debug> Debug for PreprocessedFile<Source>

Source§

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

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

impl<'a, S: 'a + AsRef<str>> EasyLocation<'a> for PreprocessedFile<S>

Source§

fn file_id(&'a self, byte_index: usize) -> <Self as Files<'a>>::FileId

Source§

impl<'a, S: 'a + AsRef<str>> Files<'a> for PreprocessedFile<S>

Source§

type FileId = &'a FileSlice

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

type Name = &'a str

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

type Source = &'a str

The source code of a file.
Source§

fn name(&'a self, id: Self::FileId) -> Result<Self::Name, Error>

The user-facing name of a file.
Source§

fn source(&'a self, _: Self::FileId) -> Result<Self::Source, Error>

The source code of a file.
Source§

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

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( &'a self, id: Self::FileId, line_index: usize, ) -> Result<Range<usize>, Error>

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

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

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

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.

Auto Trait Implementations§

§

impl<Source> Freeze for PreprocessedFile<Source>
where Source: Freeze,

§

impl<Source> RefUnwindSafe for PreprocessedFile<Source>
where Source: RefUnwindSafe,

§

impl<Source> Send for PreprocessedFile<Source>
where Source: Send,

§

impl<Source> Sync for PreprocessedFile<Source>
where Source: Sync,

§

impl<Source> Unpin for PreprocessedFile<Source>
where Source: Unpin,

§

impl<Source> UnwindSafe for PreprocessedFile<Source>
where Source: UnwindSafe,

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

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.