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