pub enum ModuleVariableDirective {
Tex {
directive: VariableDirective,
span: Span,
},
Shared {
directive: VariableDirective,
span: Span,
},
Global {
directive: VariableDirective,
span: Span,
},
Const {
directive: VariableDirective,
span: Span,
},
}Expand description
Module-level declarations that reserve storage in a specific address space.
Variants§
Tex
Deprecated .tex variable declaration.
Example: .tex .u32 tex_a; // is equivalent to .global .texref tex_a;
Global
Const
Implementations§
Trait Implementations§
Source§impl Clone for ModuleVariableDirective
impl Clone for ModuleVariableDirective
Source§fn clone(&self) -> ModuleVariableDirective
fn clone(&self) -> ModuleVariableDirective
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ModuleVariableDirective
impl Debug for ModuleVariableDirective
Source§impl PartialEq for ModuleVariableDirective
impl PartialEq for ModuleVariableDirective
Source§impl PtxParser for ModuleVariableDirective
impl PtxParser for ModuleVariableDirective
Source§fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
fn parse() -> impl Fn(&mut PtxTokenStream<'_>) -> Result<(Self, Span), PtxParseError>
Returns a parser function that can parse an instance of
Self.Source§impl Spanned for ModuleVariableDirective
impl Spanned for ModuleVariableDirective
Source§impl TreeDisplay for ModuleVariableDirective
impl TreeDisplay for ModuleVariableDirective
Source§fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
fn tree_display(&self, f: &mut TreeFormatter, source: &str) -> Result
Display this node in tree format. Read more
impl Eq for ModuleVariableDirective
impl StructuralPartialEq for ModuleVariableDirective
Auto Trait Implementations§
impl Freeze for ModuleVariableDirective
impl RefUnwindSafe for ModuleVariableDirective
impl Send for ModuleVariableDirective
impl Sync for ModuleVariableDirective
impl Unpin for ModuleVariableDirective
impl UnwindSafe for ModuleVariableDirective
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more