Enum serenity::framework::standard::DispatchError [] [src]

pub enum DispatchError {
    CheckFailed(Arc<Command>),
    CommandDisabled(String),
    BlockedUser,
    BlockedGuild,
    LackOfPermissions(Permissions),
    RateLimited(i64),
    OnlyForDM,
    OnlyForGuilds,
    OnlyForOwners,
    LackingRole,
    NotEnoughArguments {
        min: i32,
        given: usize,
    },
    TooManyArguments {
        max: i32,
        given: usize,
    },
    IgnoredBot,
    WebhookAuthor,
}

A enum representing all possible fail conditions under which a command won't be executed.

Variants

When a custom function check has failed.

When the requested command is disabled in bot configuration.

When the user is blocked in bot configuration.

When the guild or its owner is blocked in bot configuration.

When the command requester lacks specific required permissions.

When the command requester has exceeded a ratelimit bucket. The attached value is the time a requester has to wait to run the command again.

When the requested command can only be used in a direct message or group channel.

When the requested command can only be ran in guilds, or the bot doesn't support DMs.

When the requested command can only be used by bot owners.

When the requested command requires one role.

When there are too few arguments.

Fields of NotEnoughArguments

When there are too many arguments.

Fields of TooManyArguments

When the command was requested by a bot user when they are set to be ignored.

When the bot ignores webhooks and a command was issued by one.