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>
impl<'p, F: FileSystem> ParsedFile<'p, F>
pub fn file_id(&self) -> FileId
pub fn process(self, initial_state: ProcessorState) -> ExpandStack<'p, F> ⓘ
pub fn ast(&self) -> Ast
fn expand_one(self, initial_state: ProcessorState) -> ExpandOne ⓘ
Trait Implementations§
source§impl<'p, F: Debug + FileSystem> Debug for ParsedFile<'p, F>
impl<'p, F: Debug + FileSystem> Debug for ParsedFile<'p, F>
source§impl<'p, F: FileSystem> From<ParsedFile<'p, F>> for (FileId, Ast)
impl<'p, F: FileSystem> From<ParsedFile<'p, F>> for (FileId, Ast)
source§fn from(parsed_file: ParsedFile<'p, F>) -> Self
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>
impl<'p, F: FileSystem> IntoIterator for ParsedFile<'p, F>
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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