Enum glium::program::ProgramChooserCreationError [] [src]

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

Error type that is returned by the program! macro.

Variants

NoVersion

No available version has been found.

ProgramCreationError(ProgramCreationError)

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

Trait Implementations

impl Debug for ProgramChooserCreationError
[src]

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

Formats the value using the given formatter.

impl Clone for ProgramChooserCreationError
[src]

fn clone(&self) -> ProgramChooserCreationError

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 ProgramChooserCreationError
[src]

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

Formats the value using the given formatter.

impl Error for ProgramChooserCreationError
[src]

fn description(&self) -> &str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>

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

impl From<ProgramCreationError> for ProgramChooserCreationError
[src]

fn from(err: ProgramCreationError) -> ProgramChooserCreationError

Performs the conversion.