pub trait Element {
// Required method
fn syntax_element(self) -> SyntaxElement;
}
Expand description
Utility trait to allow calling syntax editor functions with references or owned nodes. Do not use outside of this module.
pub trait Element {
// Required method
fn syntax_element(self) -> SyntaxElement;
}
Utility trait to allow calling syntax editor functions with references or owned nodes. Do not use outside of this module.