Struct twilight_model::application::interaction::application_command::ApplicationCommand [−][src]
pub struct ApplicationCommand {
pub application_id: ApplicationId,
pub channel_id: ChannelId,
pub data: CommandData,
pub guild_id: Option<GuildId>,
pub id: InteractionId,
pub kind: InteractionType,
pub member: Option<PartialMember>,
pub token: String,
pub user: Option<User>,
}Expand description
Data present in an Interaction of type ApplicationCommand.
Fields
application_id: ApplicationIdID of the associated application.
channel_id: ChannelIdThe channel the interaction was triggered from.
data: CommandDataData from the invoked command.
guild_id: Option<GuildId>ID of the guild the interaction was triggered from.
id: InteractionIdID of the interaction.
kind: InteractionTypeKind of 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 ApplicationCommandimpl Send for ApplicationCommandimpl Sync for ApplicationCommandimpl Unpin for ApplicationCommandimpl UnwindSafe for ApplicationCommandBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more