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

Fields of RecursiveInclude

Fields of FileNotFound

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error