Enum nannou::ui::backend::glium::glium::program::ProgramChooserCreationError[][src]

pub enum ProgramChooserCreationError {
    NoVersion,
    ProgramCreationError(ProgramCreationError),
}

Error type that is returned by the program! macro.

Variants

No available version has been found.

A version has been found but it triggered the given error.

Trait Implementations

impl Clone for ProgramChooserCreationError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProgramChooserCreationError
[src]

Formats the value using the given formatter. Read more

impl From<ProgramCreationError> for ProgramChooserCreationError
[src]

Performs the conversion.

impl Error for ProgramChooserCreationError
[src]

This method is soft-deprecated. Read more

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

impl Display for ProgramChooserCreationError
[src]

Formats the value using the given formatter. Read more

impl From<ProgramChooserCreationError> for RendererCreationError
[src]

Performs the conversion.

Auto Trait Implementations