Enum conrod::backend::glium::glium::Handle[][src]

pub enum Handle {
    Id(u32),
    Handle(u32),
}

Handle to a shader or a program.

Variants

A numeric identifier.

A GLhandleARB.

Trait Implementations

impl Hash for Handle
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Clone for Handle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Handle
[src]

Formats the value using the given formatter. Read more

impl Send for Handle
[src]

impl Copy for Handle
[src]

impl Eq for Handle
[src]

impl PartialEq<Handle> for Handle
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Sync for Handle