#[non_exhaustive]#[repr(u8)]pub enum InteractionType {
Ping = 1,
ApplicationCommand = 2,
MessageComponent = 3,
ApplicationCommandAutocomplete = 4,
ModalSubmit = 5,
}
Expand description
Type of interaction.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ping = 1
Interaction involves a ping (webhook-based interactions).
ApplicationCommand = 2
Interaction involves an application command.
MessageComponent = 3
Interaction involves a message Component
.
ApplicationCommandAutocomplete = 4
Interaction involves an autocomplete request.
ModalSubmit = 5
Interaction involves a modal submit.
Implementations§
Trait Implementations§
source§impl Clone for InteractionType
impl Clone for InteractionType
source§fn clone(&self) -> InteractionType
fn clone(&self) -> InteractionType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InteractionType
impl Debug for InteractionType
source§impl<'de> Deserialize<'de> for InteractionType
impl<'de> Deserialize<'de> for InteractionType
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for InteractionType
impl Hash for InteractionType
source§impl PartialEq for InteractionType
impl PartialEq for InteractionType
source§impl Serialize for InteractionType
impl Serialize for InteractionType
source§impl TryFrom<u8> for InteractionType
impl TryFrom<u8> for InteractionType
impl Copy for InteractionType
impl Eq for InteractionType
impl StructuralPartialEq for InteractionType
Auto Trait Implementations§
impl Freeze for InteractionType
impl RefUnwindSafe for InteractionType
impl Send for InteractionType
impl Sync for InteractionType
impl Unpin for InteractionType
impl UnwindSafe for InteractionType
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
Mutably borrows from an owned value. Read more
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)