pub trait Composable { // Required methods fn compose(&self) -> NodeKey; fn clone_box(&self) -> Box<dyn Composable>; }
source