pub struct FileEntry<'data> {
    pub info: FileInfo<'data>,
    /* private fields */
}
Expand description

File information comprising a compilation directory, relative path and name.

Fields§

§info: FileInfo<'data>

File name and path.

Implementations§

source§

impl<'data> FileEntry<'data>

source

pub fn new(compilation_dir: Cow<'data, [u8]>, info: FileInfo<'data>) -> Self

Path to the compilation directory.

source

pub fn compilation_dir_str(&self) -> Cow<'data, str>

Path to the compilation directory.

source

pub fn abs_path_str(&self) -> String

Absolute path to the file, including the compilation directory.

Methods from Deref<Target = FileInfo<'data>>§

source

pub fn name_str(&self) -> Cow<'data, str>

The file name as UTF-8 string.

source

pub fn dir_str(&self) -> Cow<'data, str>

Path to the file relative to the compilation directory.

source

pub fn path_str(&self) -> String

The full path to the file, relative to the compilation directory.

Trait Implementations§

source§

impl Debug for FileEntry<'_>

source§

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

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

impl<'data> Deref for FileEntry<'data>

§

type Target = FileInfo<'data>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.

Auto Trait Implementations§

§

impl<'data> RefUnwindSafe for FileEntry<'data>

§

impl<'data> Send for FileEntry<'data>

§

impl<'data> Sync for FileEntry<'data>

§

impl<'data> Unpin for FileEntry<'data>

§

impl<'data> UnwindSafe for FileEntry<'data>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<I, T> ExtractContext<I, ()> for T

source§

fn extract_context(self, _original_input: I)

Given the context attached to a nom error, and given the original input to the nom parser, extract more the useful context information. 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 Twhere 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<I> RecreateContext<I> for I

source§

fn recreate_context(_original_input: I, tail: I) -> I

Given the original input, as well as the context reported by nom, recreate a context in the original string where the error occurred. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.