Enum glsl_lang::ast::PreprocessorData [−][src]
Some basic preprocessor directives.
As it’s important to carry them around the AST because they cannot be substituted in a normal preprocessor (they’re used by GPU’s compilers), those preprocessor directives are available for inspection.
Variants
Define(PreprocessorDefine)
#define
preprocessor directive
#else
preprocessor directive
ElseIf(PreprocessorElseIf)
#elseif
preprocessor directive
#endif
preprocessor directive
Error(PreprocessorError)
#error
preprocessor directive
If(PreprocessorIf)
#if
preprocessor directive
IfDef(PreprocessorIfDef)
#ifdef
preprocessor directive
IfNDef(PreprocessorIfNDef)
#ifndef
preprocessor directive
Include(PreprocessorInclude)
#include
preprocessor directive
Line(PreprocessorLine)
#line
preprocessor directive
Pragma(PreprocessorPragma)
#pragma
preprocessor directive
Undef(PreprocessorUndef)
#undef
preprocessor directive
Version(PreprocessorVersion)
#version
preprocessor directive
Extension(PreprocessorExtension)
#extension
preprocessor directive
Trait Implementations
impl Clone for PreprocessorData
[src]
fn clone(&self) -> PreprocessorData
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for PreprocessorData
[src]
impl NodeContent for PreprocessorData
[src]
pub fn into_node<T>(self) -> Node<T> where
T: From<Self> + NodeContent,
[src]
T: From<Self> + NodeContent,
pub fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
[src]
impl NodeContentDisplay for PreprocessorData
[src]
fn name() -> Option<&'static str>
[src]
fn display_extra(&self, f: &mut Formatter<'_>) -> Result
[src]
fn display_children(&self, level: usize, f: &mut Formatter<'_>) -> Result
[src]
impl NodeContentEq for PreprocessorData
[src]
fn content_eq(&self, other: &Self) -> bool
[src]
impl PartialEq<PreprocessorData> for PreprocessorData
[src]
fn eq(&self, other: &PreprocessorData) -> bool
[src]
fn ne(&self, other: &PreprocessorData) -> bool
[src]
impl StructuralPartialEq for PreprocessorData
[src]
Auto Trait Implementations
impl RefUnwindSafe for PreprocessorData
impl Send for PreprocessorData
impl Sync for PreprocessorData
impl Unpin for PreprocessorData
impl UnwindSafe for PreprocessorData
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoResult<T> for T
[src]
type Err = Infallible
pub fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
[src]
impl<T> NodeDisplay for T where
T: NodeContentDisplay,
[src]
T: NodeContentDisplay,
pub fn name() -> Option<&'static str>
[src]
pub fn start(&self) -> Option<usize>
[src]
pub fn end(&self) -> Option<usize>
[src]
pub fn source_id(&self) -> Option<usize>
[src]
pub fn display(&self) -> NodeDisplayWrapper<'_, T>
[src]
pub fn display_extra(&self, f: &mut Formatter<'_>) -> Result<(), Error>
[src]
pub fn display_children(
&self,
level: usize,
f: &mut Formatter<'_>
) -> Result<(), Error>
[src]
&self,
level: usize,
f: &mut Formatter<'_>
) -> Result<(), Error>
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,