Enum glsl_lang::parse::IdentifierContext[][src]

pub enum IdentifierContext {
    FunctionPrototype,
}

Context in which an identifier is seen for the first time

Variants

FunctionPrototype

The identifier is a function declaration name

Trait Implementations

impl Clone for IdentifierContext[src]

impl Copy for IdentifierContext[src]

impl Debug for IdentifierContext[src]

impl Eq for IdentifierContext[src]

impl PartialEq<IdentifierContext> for IdentifierContext[src]

impl StructuralEq for IdentifierContext[src]

impl StructuralPartialEq for IdentifierContext[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> 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.