pub trait TreeConfigurationComplexityMeasurer {
// Required method
fn measure_tree_configuration_complexity(
&self,
) -> Option<DetectedTreeConfigurationComplexity>;
}Expand description
- Complexity
If we want to guess or detect an overall “complexity” level from the structure
(e.g., Simple, Balanced, Complex), we can do so here.