Skip to main content

AsRuleNode

Trait AsRuleNode 

Source
pub trait AsRuleNode<'tree> {
    // Required method
    fn as_rule_node(&self) -> RuleNodeView<'tree>;
}
Expand description

Exposes the stored rule node behind a completed generated context.

Required Methods§

Source

fn as_rule_node(&self) -> RuleNodeView<'tree>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<'tree> AsRuleNode<'tree> for RuleNodeView<'tree>