pub trait PrintCliResult<Context: Context>: HandlerTypes {
// Required method
fn print(
&self,
handle_args: HandlerArgsFor<Context, Self>,
result: Self::Ok,
) -> Result<(), Self::Err>;
}
pub trait PrintCliResult<Context: Context>: HandlerTypes {
// Required method
fn print(
&self,
handle_args: HandlerArgsFor<Context, Self>,
result: Self::Ok,
) -> Result<(), Self::Err>;
}