Enum glsl_lang::ast::PreprocessorData[][src]

pub enum PreprocessorData {
    Define(PreprocessorDefine),
    Else,
    ElseIf(PreprocessorElseIf),
    EndIf,
    Error(PreprocessorError),
    If(PreprocessorIf),
    IfDef(PreprocessorIfDef),
    IfNDef(PreprocessorIfNDef),
    Include(PreprocessorInclude),
    Line(PreprocessorLine),
    Pragma(PreprocessorPragma),
    Undef(PreprocessorUndef),
    Version(PreprocessorVersion),
    Extension(PreprocessorExtension),
}

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 preprocessor directive

Else

#else preprocessor directive

#elseif preprocessor directive

EndIf

#endif preprocessor directive

#error preprocessor directive

#if preprocessor directive

#ifdef preprocessor directive

#ifndef preprocessor directive

#include preprocessor directive

#line preprocessor directive

#pragma preprocessor directive

#undef preprocessor directive

#version preprocessor directive

#extension preprocessor directive

Trait Implementations

impl Clone for PreprocessorData[src]

impl Debug for PreprocessorData[src]

impl NodeContent for PreprocessorData[src]

impl NodeContentDisplay for PreprocessorData[src]

impl NodeContentEq for PreprocessorData[src]

impl PartialEq<PreprocessorData> for PreprocessorData[src]

impl StructuralPartialEq for PreprocessorData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoResult<T> for T[src]

type Err = Infallible

impl<T> NodeDisplay for T where
    T: NodeContentDisplay
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.