Enum twilight_model::application::callback::InteractionResponse [−][src]
pub enum InteractionResponse {
Pong,
ChannelMessageWithSource(CallbackData),
DeferredChannelMessageWithSource(CallbackData),
DeferredUpdateMessage,
UpdateMessage(CallbackData),
}Expand description
Payload used for responding to an interaction.
Refer to the discord docs for more information.
Variants
Used when responding to an interaction of type Ping.
ChannelMessageWithSource(CallbackData)Responds to an interaction with a message.
Tuple Fields of ChannelMessageWithSource
0: CallbackDataDeferredChannelMessageWithSource(CallbackData)Acknowledges an interaction, showing a loading state.
Tuple Fields of DeferredChannelMessageWithSource
0: CallbackDataAcknowledge an interaction and edit the original message later.
This is only valid for components.
UpdateMessage(CallbackData)Edit the message a component is attached to.
Tuple Fields of UpdateMessage
0: CallbackDataImplementations
Type of response this is.
Examples
Check the types of the DeferredUpdateMessage and Pong
interaction response variants.
use twilight_model::application::callback::{
InteractionResponse,
ResponseType,
};
assert_eq!(
ResponseType::DeferredUpdateMessage,
InteractionResponse::DeferredUpdateMessage.kind(),
);
assert_eq!(ResponseType::Pong, InteractionResponse::Pong.kind());Trait Implementations
Deserialize this value from the given Serde deserializer. Read more
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 InteractionResponse
impl Send for InteractionResponse
impl Sync for InteractionResponse
impl Unpin for InteractionResponse
impl UnwindSafe for InteractionResponse
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