Enum gfx_debug_draw::DebugRendererError [] [src]

pub enum DebugRendererError {
    ShaderProgramError(ProgramError),
    BufferUpdateError(BufferUpdateError),
    GfxTextError(Error),
}

Variants

ShaderProgramError(ProgramError)BufferUpdateError(BufferUpdateError)GfxTextError(Error)

Trait Implementations

impl Debug for DebugRendererError
[src]

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

Formats the value using the given formatter.

impl From<ProgramError> for DebugRendererError
[src]

fn from(err: ProgramError) -> DebugRendererError

Performs the conversion.

impl From<BufferUpdateError> for DebugRendererError
[src]

fn from(err: BufferUpdateError) -> DebugRendererError

Performs the conversion.

impl From<Error> for DebugRendererError
[src]

fn from(err: Error) -> DebugRendererError

Performs the conversion.