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

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

Trait Implementations

impl Display for ProgramChooserCreationError

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

impl Error for ProgramChooserCreationError

fn description(&self) -> &str

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

impl From<ProgramCreationError> for ProgramChooserCreationError

fn from(err: ProgramCreationError) -> ProgramChooserCreationError

Derived Implementations

impl Debug for ProgramChooserCreationError

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

impl Clone for ProgramChooserCreationError

fn clone(&self) -> ProgramChooserCreationError

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