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.
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.