pub struct InteractionResponseDataBuilder(_);
Available on crate feature builder only.
Expand description

Create an InteractionResponseData with a builder.

Example

use twilight_model::{
    application::component::{button::ButtonStyle, ActionRow, Button, Component},
    channel::message::MessageFlags,
};
use twilight_util::builder::InteractionResponseDataBuilder;

let component = Component::ActionRow(ActionRow {
    components: Vec::from([Component::Button(Button {
        style: ButtonStyle::Primary,
        emoji: None,
        label: Some("Button label".to_string()),
        custom_id: Some("button_id".to_string()),
        url: None,
        disabled: false,
    })]),
});

let interaction_response_data = InteractionResponseDataBuilder::new()
    .content("Callback message")
    .flags(MessageFlags::EPHEMERAL)
    .components([component.clone()])
    .build();

assert_eq!(interaction_response_data.components, Some(vec![component]));

Implementations

Create a new builder to construct an InteractionResponseData.

Consume the builder, returning an InteractionResponseData.

Set the AllowedMentions of the callback.

Defaults to None.

Set the attachments of the message.

Defaults to None.

Set the autocomplete choices of the response.

Only valid when the type of the interaction is ApplicationCommandAutocompleteResult.

Set the message Components of the callback.

Defaults to None.

Set the message content of the callback.

Defaults to None.

Set the custom ID of the callback.

Defaults to None.

Set the Embeds of the callback.

Defaults to an empty list.

Set the MessageFlags.

The only supported flags are EPHEMERAL and SUPPRESS_EMBEDS.

Defaults to None.

Set the title of the callback.

Defaults to None.

Set whether the response has text-to-speech enabled.

Defaults to None.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
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