pub trait ResultConsumer<S> {
// Required method
fn on_command_complete(
&self,
context: Rc<CommandContext<S>>,
success: bool,
result: i32,
);
}
pub trait ResultConsumer<S> {
// Required method
fn on_command_complete(
&self,
context: Rc<CommandContext<S>>,
success: bool,
result: i32,
);
}