pub struct CheckboxesBuilder<'a, A, O> { /* private fields */ }Expand description
Checkbox group builder
Allows you to construct safely, with compile-time checks on required setter methods.
§Required Methods
CheckboxesBuilder::build() is only available if these methods have been called:
action_idoptions
§Example
use std::convert::TryFrom;
use slack_blocks::{blocks::{Actions, Block},
compose::Opt,
elems::{BlockElement, Checkboxes}};
mod usa {
pub struct State {
pub name: String,
pub abbrev: String,
}
pub fn arizona() -> State {
State { name: String::from("Arizona"),
abbrev: String::from("AZ") }
}
pub fn get_states() -> Vec<State> {
// ...
}
}
let state_opt = |state: usa::State| {
Opt::builder().text_plain(state.name)
.value(state.abbrev)
.build()
};
let states: Vec<Opt<_, _>> =
usa::get_states().into_iter().map(state_opt).collect();
let boxes =
Checkboxes::builder().action_id("state_picker")
.options(states)
.initial_options(vec![state_opt(usa::arizona())])
.build();
let block: Block = Actions::builder().element(boxes).build().into();
// <send block to slack API>Implementations§
Source§impl<'a, A, O> CheckboxesBuilder<'a, A, O>
impl<'a, A, O> CheckboxesBuilder<'a, A, O>
Sourcepub fn action_id<S>(
self,
action_id: S,
) -> CheckboxesBuilder<'a, Set<action_id>, O>
pub fn action_id<S>( self, action_id: S, ) -> CheckboxesBuilder<'a, Set<action_id>, O>
Set action_id (Optional)
An identifier for the action triggered when the checkbox group is changed.
You can use this when you receive an interaction payload to identify the source of the action 🔗.
Should be unique among all other action_ids in the containing block.
Maximum length for this field is 255 characters.
Sourcepub fn child<T: Into<Text>>(
self,
option: Opt<'a, T, NoUrl>,
) -> CheckboxesBuilder<'a, A, Set<options>>
Available on crate feature blox only.
pub fn child<T: Into<Text>>( self, option: Opt<'a, T, NoUrl>, ) -> CheckboxesBuilder<'a, A, Set<options>>
blox only.Append an option to options
Sourcepub fn options<T: Into<Text>>(
self,
options: Vec<Opt<'a, T, NoUrl>>,
) -> CheckboxesBuilder<'a, A, Set<options>>
pub fn options<T: Into<Text>>( self, options: Vec<Opt<'a, T, NoUrl>>, ) -> CheckboxesBuilder<'a, A, Set<options>>
Sourcepub fn option<T: Into<Text>>(
self,
option: Opt<'a, T, NoUrl>,
) -> CheckboxesBuilder<'a, A, Set<options>>
pub fn option<T: Into<Text>>( self, option: Opt<'a, T, NoUrl>, ) -> CheckboxesBuilder<'a, A, Set<options>>
Append an option to options
Sourcepub fn initial_options<T: Into<Text>>(
self,
options: Vec<Opt<'a, T, NoUrl>>,
) -> Self
pub fn initial_options<T: Into<Text>>( self, options: Vec<Opt<'a, T, NoUrl>>, ) -> Self
Set initial_options (Optional)
An array of option objects 🔗 that exactly matches one or more
of the options within options.
These options will be selected when the checkbox group initially loads.
Sourcepub fn confirm(self, confirm: Confirm) -> Self
pub fn confirm(self, confirm: Confirm) -> Self
Set confirm (Optional)
A confirm object 🔗 that defines an optional confirmation dialog that appears after clicking one of the checkboxes in this element.
Source§impl<'a> CheckboxesBuilder<'a, Set<action_id>, Set<options>>
impl<'a> CheckboxesBuilder<'a, Set<action_id>, Set<options>>
Sourcepub fn build(self) -> Checkboxes<'a>
pub fn build(self) -> Checkboxes<'a>
All done building, now give me a darn checkbox group!
no method name 'build' found for struct 'CheckboxesBuilder<...>'? Make sure all required setter methods have been called. See docs forCheckboxesBuilder.
use slack_blocks::elems::Checkboxes;
let foo = Checkboxes::builder().build(); // Won't compile!use slack_blocks::{compose::Opt, elems::Checkboxes};
let foo = Checkboxes::builder().action_id("foo")
.options(vec![Opt::builder().text_plain("foo")
.value("bar")
.build()])
.build();