#[non_exhaustive]#[repr(u8)]pub enum InteractionResponseType {
Pong = 1,
ChannelMessageWithSource = 4,
DeferredChannelMessageWithSource = 5,
DeferredUpdateMessage = 6,
UpdateMessage = 7,
ApplicationCommandAutocompleteResult = 8,
Modal = 9,
PremiumRequired = 10,
}
Expand description
Type of interaction response.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Pong = 1
Used when responding to a Ping from Discord.
ChannelMessageWithSource = 4
Responds to an interaction with a message.
DeferredChannelMessageWithSource = 5
Acknowledges an interaction, showing a loading state, and allowing for the message to be edited later.
DeferredUpdateMessage = 6
Acknowledges a component interaction, allowing for the message to be edited later.
This is only valid for components and modal submits.
UpdateMessage = 7
Acknowledges a component interaction and edits the message.
This is only valid for components and modal submits.
ApplicationCommandAutocompleteResult = 8
Respond to an autocomplete interaction with suggested choices.
Modal = 9
Respond to an interaction with a popup modal.
PremiumRequired = 10
Respond to an interaction with an upgrade button, only available for apps with monetization enabled
Deprecated: Please send a InteractionResponseType::ChannelMessageWithSource
with an Button
with the style ButtonStyle::Premium
instead.
Trait Implementations§
source§impl Clone for InteractionResponseType
impl Clone for InteractionResponseType
source§fn clone(&self) -> InteractionResponseType
fn clone(&self) -> InteractionResponseType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InteractionResponseType
impl Debug for InteractionResponseType
source§impl<'de> Deserialize<'de> for InteractionResponseType
impl<'de> Deserialize<'de> for InteractionResponseType
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
source§impl Hash for InteractionResponseType
impl Hash for InteractionResponseType
source§impl PartialEq for InteractionResponseType
impl PartialEq for InteractionResponseType
source§impl Serialize for InteractionResponseType
impl Serialize for InteractionResponseType
impl Copy for InteractionResponseType
impl Eq for InteractionResponseType
impl StructuralPartialEq for InteractionResponseType
Auto Trait Implementations§
impl Freeze for InteractionResponseType
impl RefUnwindSafe for InteractionResponseType
impl Send for InteractionResponseType
impl Sync for InteractionResponseType
impl Unpin for InteractionResponseType
impl UnwindSafe for InteractionResponseType
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)