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 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