pub trait Command {
// Required method
fn assemble_graph(graph: &mut CommandGraphBuilder<'_, Self>)
where Self: Sized;
}pub trait Command {
// Required method
fn assemble_graph(graph: &mut CommandGraphBuilder<'_, Self>)
where Self: Sized;
}