[][src]Function serenity::framework::standard::help_commands::with_embeds

pub fn with_embeds<H: BuildHasher>(
    _: &mut Context,
    msg: &Message,
    help_options: &HelpOptions,
    groups: HashMap<String, Arc<CommandGroup>, H>,
    args: &Args
) -> Result<(), CommandError>

Posts an embed showing each individual command group and its commands.

Examples

Use the command with exec_help:

use serenity::framework::standard::{StandardFramework, help_commands};

client.with_framework(StandardFramework::new()
    .help(help_commands::with_embeds));