pub trait CommandOutput {
    fn report(self, cmd_name: &str);
}
Expand description

Members of this trait can be returned from a subcommand function annotated with command or fallback_command.

Required Methods

Reports any errors in this command output as macOS notifications.

Implementations on Foreign Types

Implementors