Struct glsl_lang::parse::ParseOptions[][src]

pub struct ParseOptions {
    pub target_vulkan: bool,
    pub source_id: usize,
    pub allow_rs_ident: bool,
}

Parsing options

Fields

target_vulkan: bool

true if the GLSL target should be Vulkan instead of OpenGL

source_id: usize

Unique source identifier for token positions

allow_rs_ident: bool

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

Implementations

impl ParseOptions[src]

pub fn new() -> Self[src]

Create new parsing options using default values

pub fn build(self) -> ParseContext[src]

Create a new parsing context from this options object

pub fn with_comments(self) -> ParseContext[src]

Create a new parsing context from this options object, with comment parsing enabled

pub fn with_policy(self, policy: impl TypeTablePolicy + 'static) -> ParseContext[src]

Create a new parsing context from this options object, with a custom type table policy

pub fn with_comments_and_policy(
    self,
    policy: impl TypeTablePolicy + 'static
) -> ParseContext
[src]

Create a new parsing context from this options object, with a custom type table policy and comment parsing enabled

pub fn with_context(self, context: ParseContextData) -> ParseContext[src]

Create a new parsing context from this options object and pre-existing context data

Trait Implementations

impl Clone for ParseOptions[src]

impl Copy for ParseOptions[src]

impl Debug for ParseOptions[src]

impl Default for ParseOptions[src]

impl From<ParseOptions> for ParseContext[src]

impl PartialEq<ParseOptions> for ParseOptions[src]

impl StructuralPartialEq for ParseOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoResult<T> for T[src]

type Err = Infallible

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.