pub trait HierarchyIterDebug<'a, P, C, T> {
// Required method
fn debug_tree<F>(
&'a self,
root: EntityId,
get_label: F,
) -> DebugHierarchyTree<'a, P, C, F>
where F: Fn(EntityId) -> String;
}
Required Methods§
fn debug_tree<F>( &'a self, root: EntityId, get_label: F, ) -> DebugHierarchyTree<'a, P, C, F>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.