pub enum SlackActionBlockElement {
Button(SlackBlockButtonElement),
Overflow(SlackBlockOverflowElement),
DatePicker(SlackBlockDatePickerElement),
PlainTextInput(SlackBlockPlainTextInputElement),
RadioButtons(SlackBlockRadioButtonsElement),
Checkboxes(SlackBlockCheckboxesElement),
}Variants§
Button(SlackBlockButtonElement)
Overflow(SlackBlockOverflowElement)
DatePicker(SlackBlockDatePickerElement)
PlainTextInput(SlackBlockPlainTextInputElement)
RadioButtons(SlackBlockRadioButtonsElement)
Checkboxes(SlackBlockCheckboxesElement)
Trait Implementations§
source§impl Clone for SlackActionBlockElement
impl Clone for SlackActionBlockElement
source§fn clone(&self) -> SlackActionBlockElement
fn clone(&self) -> SlackActionBlockElement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SlackActionBlockElement
impl Debug for SlackActionBlockElement
source§impl<'de> Deserialize<'de> for SlackActionBlockElement
impl<'de> Deserialize<'de> for SlackActionBlockElement
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 From<SlackBlockButtonElement> for SlackActionBlockElement
impl From<SlackBlockButtonElement> for SlackActionBlockElement
source§fn from(element: SlackBlockButtonElement) -> Self
fn from(element: SlackBlockButtonElement) -> Self
Converts to this type from the input type.
source§impl From<SlackBlockCheckboxesElement> for SlackActionBlockElement
impl From<SlackBlockCheckboxesElement> for SlackActionBlockElement
source§fn from(element: SlackBlockCheckboxesElement) -> Self
fn from(element: SlackBlockCheckboxesElement) -> Self
Converts to this type from the input type.
source§impl From<SlackBlockDatePickerElement> for SlackActionBlockElement
impl From<SlackBlockDatePickerElement> for SlackActionBlockElement
source§fn from(element: SlackBlockDatePickerElement) -> Self
fn from(element: SlackBlockDatePickerElement) -> Self
Converts to this type from the input type.
source§impl From<SlackBlockOverflowElement> for SlackActionBlockElement
impl From<SlackBlockOverflowElement> for SlackActionBlockElement
source§fn from(element: SlackBlockOverflowElement) -> Self
fn from(element: SlackBlockOverflowElement) -> Self
Converts to this type from the input type.
source§impl From<SlackBlockPlainTextInputElement> for SlackActionBlockElement
impl From<SlackBlockPlainTextInputElement> for SlackActionBlockElement
source§fn from(element: SlackBlockPlainTextInputElement) -> Self
fn from(element: SlackBlockPlainTextInputElement) -> Self
Converts to this type from the input type.
source§impl From<SlackBlockRadioButtonsElement> for SlackActionBlockElement
impl From<SlackBlockRadioButtonsElement> for SlackActionBlockElement
source§fn from(element: SlackBlockRadioButtonsElement) -> Self
fn from(element: SlackBlockRadioButtonsElement) -> Self
Converts to this type from the input type.