pub trait AsAny {
// Required method
fn as_any(&self) -> &dyn Any;
}
Expand description
Trait providing type erasure capabilities for command objects.
This trait allows commands to be stored and passed around as trait objects while still providing access to their concrete types when needed for pipeline dispatch.