[][src]Macro command_attr::group_options

group_options!() { /* proc-macro */ }

Create an instance of GroupOptions. Useful when making default options and then deriving them for command groups.

use command_attr::group_options;

// First argument is the name of the options; second the actual options.
group_options!("foobar", {
    description: "I'm an example group",
});