| 1 | /// Aggregated metadata for nodes, that can propagate up a node tree. |
| 2 | pub trait NodeMetadata: Sized + Copy + Default { |
| 3 | /// Merges another NodeMetadata into this one, returning the result. |
| 4 | fn merge(self, other: Self) -> Self; |
nothing calls this directly
no outgoing calls
no test coverage detected