Enum imgui::glium_renderer::RendererError [] [src]

pub enum RendererError {
    Vertex(BufferCreationError),
    Index(BufferCreationError),
    Program(ProgramChooserCreationError),
    Texture(TextureCreationError),
    Draw(DrawError),
}

Variants

Vertex(BufferCreationError)Index(BufferCreationError)Program(ProgramChooserCreationError)Texture(TextureCreationError)Draw(DrawError)

Trait Implementations

impl Debug for RendererError
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for RendererError
[src]

fn clone(&self) -> RendererError

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Display for RendererError
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<BufferCreationError> for RendererError
[src]

fn from(e: BufferCreationError) -> RendererError

Performs the conversion.

impl From<BufferCreationError> for RendererError
[src]

fn from(e: BufferCreationError) -> RendererError

Performs the conversion.

impl From<ProgramChooserCreationError> for RendererError
[src]

fn from(e: ProgramChooserCreationError) -> RendererError

Performs the conversion.

impl From<TextureCreationError> for RendererError
[src]

fn from(e: TextureCreationError) -> RendererError

Performs the conversion.

impl From<DrawError> for RendererError
[src]

fn from(e: DrawError) -> RendererError

Performs the conversion.