Enum nannou::ui::backend::glium::RendererCreationError [] [src]

pub enum RendererCreationError {
    Texture(TextureCreationError),
    Program(ProgramChooserCreationError),
}

Possible errors that may occur during a call to Renderer::new.

Variants

Errors that might occur when creating the glyph cache texture.

Errors that might occur when constructing the shader program.

Trait Implementations

impl Error for RendererCreationError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

impl Display for RendererCreationError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<ProgramChooserCreationError> for RendererCreationError
[src]

[src]

Performs the conversion.

impl From<TextureCreationError> for RendererCreationError
[src]

[src]

Performs the conversion.

impl Debug for RendererCreationError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations