pub type Constructor<Node> = Arc<dyn Fn() -> Node + Send + Sync>;
Shared closure that creates a node of some type.
struct Constructor<Node> { /* private fields */ }