pub trait ContainerHandle<N = Node>: NodeHandle<N> {
type ChildrenHandle: NodeHandle<N>;
}Expand description
Trait for handles that contain children.
The allowed children handles are defined by the associated type.
Required Associated Types§
Sourcetype ChildrenHandle: NodeHandle<N>
type ChildrenHandle: NodeHandle<N>
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.