pub trait ExecuteCommand<CT: CommandTransaction + WithInterceptors<CT> + WithEventBus> {
// Required method
fn execute_command(
&self,
txn: &mut CT,
cmd: Command<'_>,
) -> Result<Vec<Frame>>;
}pub trait ExecuteCommand<CT: CommandTransaction + WithInterceptors<CT> + WithEventBus> {
// Required method
fn execute_command(
&self,
txn: &mut CT,
cmd: Command<'_>,
) -> Result<Vec<Frame>>;
}