pub struct External<'a> { /* private fields */ }Expand description
§Multi-Select menu with external data source
This select menu will load its options from an external data source, allowing for a dynamic list of options.
§Setup
Slack API doc guide for setting up an external data source 🔗
Implementations§
Source§impl<'a> External<'a>
impl<'a> External<'a>
Sourcepub fn builder() -> MultiExternalBuilderInit<'a>
pub fn builder() -> MultiExternalBuilderInit<'a>
Sourcepub fn validate(&self) -> Result<(), ValidationErrors>
Available on crate feature validation only.
pub fn validate(&self) -> Result<(), ValidationErrors>
validation only.Validate that this user select agrees with Slack’s model requirements
§Errors
- If
placeholderlonger than 150 chars - If
action_idlonger than 255 chars
§Example
use slack_blocks::elems::select;
let placeholder = r#"Hey I really would appreciate it if you chose
a channel relatively soon, so that we can figure out
where we need to send this poll, ok? it's kind of
important that you specify where this poll should be
sent, in case we haven't made that super clear.
If you understand, could you pick a channel, already??"#;
let select = select::multi::External::builder().placeholder(placeholder)
.action_id("ABC123")
.build();
assert!(matches!(select.validate(), Err(_)))Trait Implementations§
Source§impl<'de, 'a> Deserialize<'de> for External<'a>
impl<'de, 'a> Deserialize<'de> for External<'a>
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<'a> From<External<'a>> for BlockElement<'a>
impl<'a> From<External<'a>> for BlockElement<'a>
Source§impl<'a> From<External<'a>> for SupportedElement<'a>
impl<'a> From<External<'a>> for SupportedElement<'a>
impl<'a> StructuralPartialEq for External<'a>
Auto Trait Implementations§
impl<'a> Freeze for External<'a>
impl<'a> RefUnwindSafe for External<'a>
impl<'a> Send for External<'a>
impl<'a> Sync for External<'a>
impl<'a> Unpin for External<'a>
impl<'a> UnwindSafe for External<'a>
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