macro_rules! impl_node_with_positions {
($type_name:ident { $($field:ident),* }) => { ... };
($type_name:ident) => { ... };
}
Expand description
Macro for generating Node trait implementations with optional position fields. This macro automatically implements the Node trait for types that have position fields.