Enum nannou::ui::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 Copy for Handle
[src]

impl PartialEq<Handle> for Handle
[src]

[src]

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

[src]

This method tests for !=.

impl Clone for Handle
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Send for Handle
[src]

impl Eq for Handle
[src]

impl Hash for Handle
[src]

[src]

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

1.3.0
[src]

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

impl Debug for Handle
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Sync for Handle