Enum glsl_include::error::Error
[−]
[src]
pub enum Error {
RecursiveInclude {
in_file: Option<String>,
line_num: usize,
problem_include: String,
include_stack: Vec<String>,
},
FileNotFound {
in_file: Option<String>,
line_num: usize,
problem_include: String,
},
}Variants
RecursiveIncludeFields of RecursiveInclude
in_file: Option<String> | |
line_num: usize | |
problem_include: String | |
include_stack: Vec<String> |
FileNotFoundFields of FileNotFound
in_file: Option<String> | |
line_num: usize | |
problem_include: String |
Trait Implementations
impl Debug for Error[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Error for Error[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