Trait nannou::ui::backend::glium::glium::GlObject[][src]

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

Trait for objects that are OpenGL objects.

Associated Types

The type of identifier for this object.

Required Methods

Returns the id of the object.

Implementors