Struct twilight_util::builder::CallbackDataBuilder[][src]

pub struct CallbackDataBuilder(_);
This is supported on crate feature builder only.
Expand description

Create a CallbackData with a builder.

Example

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

let component = 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 callback_data = CallbackDataBuilder::new()
    .content("Callback message".to_string())
    .flags(MessageFlags::EPHEMERAL)
    .components([component.clone()])
    .build();

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

Implementations

Create a new builder to construct a CallbackData.

Consume the builder, returning a CallbackData.

Set the AllowedMentions of the callback.

Defaults to None.

Set the message Components of the callback.

Defaults to None.

Set the message content of the callback.

Defaults to None.

Set the Embeds of the callback.

Defaults to an empty list.

Set the MessageFlags.

The only supported flag is EPHEMERAL.

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

Performs the conversion.

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

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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