Type Alias glsl_lang::ast::SingleDeclaration

source ·
pub type SingleDeclaration = Node<SingleDeclarationData>;
Expand description

Type alias for Node<SingleDeclarationData>.

Aliased Type§

struct SingleDeclaration {
    pub content: SingleDeclarationData,
    pub span: Option<NodeSpan>,
}

Fields§

§content: SingleDeclarationData

Contents of this syntax node

§span: Option<NodeSpan>

Span in the input this node was parsed from

Trait Implementations§

source§

impl Host for SingleDeclaration

source§

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

Visit an AST node.
source§

impl HostMut for SingleDeclaration

source§

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

Visit an AST node.