Struct twilight_model::application::interaction::application_command::ApplicationCommand
source · [−]pub struct ApplicationCommand {
pub application_id: Id<ApplicationMarker>,
pub channel_id: Id<ChannelMarker>,
pub data: CommandData,
pub guild_id: Option<Id<GuildMarker>>,
pub guild_locale: Option<String>,
pub id: Id<InteractionMarker>,
pub kind: InteractionType,
pub locale: String,
pub member: Option<PartialMember>,
pub token: String,
pub user: Option<User>,
}Expand description
Data present in an Interaction of type ApplicationCommand.
Fields
application_id: Id<ApplicationMarker>ID of the associated application.
channel_id: Id<ChannelMarker>The channel the interaction was triggered from.
data: CommandDataData from the invoked command.
guild_id: Option<Id<GuildMarker>>ID of the guild the interaction was triggered from.
guild_locale: Option<String>Guild’s preferred locale.
Present when the command is used in a guild.
Defaults to en-US.
id: Id<InteractionMarker>ID of the interaction.
kind: InteractionTypeKind of the interaction.
locale: StringSelected language of the user who triggered the interaction.
member: Option<PartialMember>Member that triggered the interaction.
Present when the command is used in a guild.
token: StringToken of the interaction.
user: Option<User>User that triggered the interaction.
Present when the command is used in a direct message.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ApplicationCommand
impl Send for ApplicationCommand
impl Sync for ApplicationCommand
impl Unpin for ApplicationCommand
impl UnwindSafe for ApplicationCommand
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more