pub struct ParseOptions {
    pub default_version: u16,
    pub target_vulkan: bool,
    pub source_id: FileId,
    pub allow_rs_ident: bool,
}
Expand description

Parsing options

Fields

default_version: u16

Default GLSL version number to parse source as

target_vulkan: bool

true if the GLSL target should be Vulkan instead of OpenGL

source_id: FileId

Unique source identifier for token positions

allow_rs_ident: bool

Allow Rust quoting identifiers (#(ident)) in the source

Implementations

Create new parsing options using default values

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.