pub(crate) trait DynCheatcode: 'static + Debug {
// Required methods
fn cheatcode(&self) -> &'static Cheatcode<'static>;
fn dyn_apply(
&self,
ccx: &mut CheatsCtxt<'_, '_, '_, '_>,
executor: &mut dyn CheatcodesExecutor,
) -> Result;
}