Enum glium::program::ProgramChooserCreationError
[−]
[src]
pub enum ProgramChooserCreationError {
NoVersion,
ProgramCreationError(ProgramCreationError),
}Error type that is returned by the program! macro.
Variants
NoVersionNo available version has been found.
ProgramCreationError(ProgramCreationError)A version has been found but it triggered the given error.
Trait Implementations
impl Clone for ProgramChooserCreationError[src]
fn clone(&self) -> ProgramChooserCreationError[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for ProgramChooserCreationError[src]
impl Display for ProgramChooserCreationError[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl Error for ProgramChooserCreationError[src]
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>[src]
The lower-level cause of this error, if any. Read more
impl From<ProgramCreationError> for ProgramChooserCreationError[src]
fn from(err: ProgramCreationError) -> ProgramChooserCreationError[src]
Performs the conversion.