pub trait NodeClone { // Required method fn clone_box(&self) -> Box<dyn Node + Send + Sync>; }
Implements Clone for Box<dyn Node + Send + Sync>