pub trait ContainerHandle: NodeHandle {
type ChildrenHandle: NodeHandle;
}Expand description
Trait for handles that contain children.
The allowed children handles are defined by the associated type.
Required Associated Types§
sourcetype ChildrenHandle: NodeHandle
type ChildrenHandle: NodeHandle
Handle type for the children of this node.
Object Safety§
This trait is not object safe.