Enum naga::proc::NameKey[][src]

pub enum NameKey {
    GlobalVariable(Handle<GlobalVariable>),
    Type(Handle<Type>),
    StructMember(Handle<Type>, u32),
    Function(Handle<Function>),
    FunctionArgument(Handle<Function>, u32),
    FunctionLocal(Handle<Function>, Handle<LocalVariable>),
    EntryPoint(EntryPointIndex),
    EntryPointLocal(EntryPointIndexHandle<LocalVariable>),
}

Variants

GlobalVariable(Handle<GlobalVariable>)
Type(Handle<Type>)
StructMember(Handle<Type>, u32)
Function(Handle<Function>)
FunctionArgument(Handle<Function>, u32)
FunctionLocal(Handle<Function>, Handle<LocalVariable>)
EntryPoint(EntryPointIndex)

Trait Implementations

impl Debug for NameKey[src]

impl Eq for NameKey[src]

impl Hash for NameKey[src]

impl PartialEq<NameKey> for NameKey[src]

impl StructuralEq for NameKey[src]

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