Enum glsl::syntax::StorageQualifier [] [src]

pub enum StorageQualifier {
    Const,
    InOut,
    In,
    Out,
    Centroid,
    Patch,
    Sample,
    Uniform,
    Buffer,
    Shared,
    Coherent,
    Volatile,
    Restrict,
    ReadOnly,
    WriteOnly,
    Subroutine(Vec<TypeName>),
}

Storage qualifier.

Variants

Trait Implementations

impl Clone for StorageQualifier
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for StorageQualifier
[src]

Formats the value using the given formatter.

impl PartialEq for StorageQualifier
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.