Struct glsl_lang::parse::ParseOptions [−][src]
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]
self,
policy: impl TypeTablePolicy + 'static
) -> ParseContext
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]
fn clone(&self) -> ParseOptions
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for ParseOptions
[src]
impl Debug for ParseOptions
[src]
impl Default for ParseOptions
[src]
fn default() -> ParseOptions
[src]
impl From<ParseOptions> for ParseContext
[src]
fn from(opts: ParseOptions) -> Self
[src]
impl PartialEq<ParseOptions> for ParseOptions
[src]
fn eq(&self, other: &ParseOptions) -> bool
[src]
fn ne(&self, other: &ParseOptions) -> bool
[src]
impl StructuralPartialEq for ParseOptions
[src]
Auto Trait Implementations
impl RefUnwindSafe for ParseOptions
impl Send for ParseOptions
impl Sync for ParseOptions
impl Unpin for ParseOptions
impl UnwindSafe for ParseOptions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoResult<T> for T
[src]
type Err = Infallible
pub fn into_result(self) -> Result<T, <T as IntoResult<T>>::Err>
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,