Type Alias glsl_lang::ast::Identifier

source ·
pub type Identifier = Node<IdentifierData>;
Expand description

Type alias for Node<IdentifierData>.

Aliased Type§

struct Identifier {
    pub content: IdentifierData,
    pub span: Option<NodeSpan>,
}

Fields§

§content: IdentifierData

Contents of this syntax node

§span: Option<NodeSpan>

Span in the input this node was parsed from

Trait Implementations§

source§

impl Host for Identifier

source§

fn visit<V>(&self, visitor: &mut V)
where V: Visitor,

Visit an AST node.
source§

impl HostMut for Identifier

source§

fn visit_mut<V>(&mut self, visitor: &mut V)
where V: VisitorMut,

Visit an AST node.