Trait glium::GlObject [] [src]

pub trait GlObject {
    type Id;
    fn get_id(&self) -> Self::Id;
}

Trait for objects that are OpenGL objects.

Associated Types

type Id

The type of identifier for this object.

Required Methods

fn get_id(&self) -> Self::Id

Returns the id of the object.

Implementors