Struct glsl_lang_pp::processor::fs::ParsedFile

source ·
pub struct ParsedFile<'p, F: FileSystem> {
    processor: &'p mut Processor<F>,
    file_id: FileId,
}

Fields§

§processor: &'p mut Processor<F>§file_id: FileId

Implementations§

source§

impl<'p, F: FileSystem> ParsedFile<'p, F>

source

pub fn file_id(&self) -> FileId

source

pub fn process(self, initial_state: ProcessorState) -> ExpandStack<'p, F>

source

pub fn ast(&self) -> Ast

source

fn expand_one(self, initial_state: ProcessorState) -> ExpandOne

Trait Implementations§

source§

impl<'p, F: Debug + FileSystem> Debug for ParsedFile<'p, F>

source§

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

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

impl<'p, F: FileSystem> From<ParsedFile<'p, F>> for (FileId, Ast)

source§

fn from(parsed_file: ParsedFile<'p, F>) -> Self

Converts to this type from the input type.
source§

impl<'p, F: FileSystem> IntoIterator for ParsedFile<'p, F>

§

type Item = <ExpandStack<'p, F> as Iterator>::Item

The type of the elements being iterated over.
§

type IntoIter = ExpandStack<'p, F>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more

Auto Trait Implementations§

§

impl<'p, F> Freeze for ParsedFile<'p, F>

§

impl<'p, F> RefUnwindSafe for ParsedFile<'p, F>
where F: RefUnwindSafe,

§

impl<'p, F> Send for ParsedFile<'p, F>
where F: Send,

§

impl<'p, F> Sync for ParsedFile<'p, F>
where F: Sync,

§

impl<'p, F> Unpin for ParsedFile<'p, F>

§

impl<'p, F> !UnwindSafe for ParsedFile<'p, F>

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

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
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.