[][src]Enum glsl::syntax::Preprocessor

pub enum Preprocessor {
    Define(PreprocessorDefine),
    Version(PreprocessorVersion),
    Extension(PreprocessorExtension),
}

Some basic preprocessor commands.

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 commands are available for inspection.

Important note: so far, only #version and #extension are supported. Other pragmas will be added in the future. Stay tuned.

Variants

Trait Implementations

impl Parse for Preprocessor[src]

impl Host for Preprocessor[src]

impl Clone for Preprocessor[src]

impl PartialEq<Preprocessor> for Preprocessor[src]

impl Debug for Preprocessor[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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.

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

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

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