[][src]Enum slack_morphism_models::blocks::SlackInputBlockElement

pub enum SlackInputBlockElement {
    StaticSelect(SlackBlockStaticSelectElement),
    MultiStaticSelect(SlackBlockMultiStaticSelectElement),
    ExternalSelect(SlackBlockExternalSelectElement),
    MultiExternalSelect(SlackBlockMultiExternalSelectElement),
    UsersSelect(SlackBlockUsersSelectElement),
    MultiUsersSelect(SlackBlockMultiUsersSelectElement),
    ConversationsSelect(SlackBlockConversationsSelectElement),
    MultiConversationsSelect(SlackBlockMultiConversationsSelectElement),
    ChannelsSelect(SlackBlockChannelsSelectElement),
    MultiChannelsSelect(SlackBlockMultiChannelsSelectElement),
    DatePicker(SlackBlockDatePickerElement),
    PlainTextInput(SlackBlockPlainTextInputElement),
    RadioButtons(SlackBlockRadioButtonsElement),
    Checkboxes(SlackBlockCheckboxesElement),
}

Variants

Trait Implementations

impl Clone for SlackInputBlockElement[src]

impl Debug for SlackInputBlockElement[src]

impl<'de> Deserialize<'de> for SlackInputBlockElement[src]

impl From<SlackBlockChannelsSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockCheckboxesElement> for SlackInputBlockElement[src]

impl From<SlackBlockConversationsSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockDatePickerElement> for SlackInputBlockElement[src]

impl From<SlackBlockExternalSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockMultiChannelsSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockMultiConversationsSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockMultiExternalSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockMultiStaticSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockMultiUsersSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockPlainTextInputElement> for SlackInputBlockElement[src]

impl From<SlackBlockRadioButtonsElement> for SlackInputBlockElement[src]

impl From<SlackBlockStaticSelectElement> for SlackInputBlockElement[src]

impl From<SlackBlockUsersSelectElement> for SlackInputBlockElement[src]

impl PartialEq<SlackInputBlockElement> for SlackInputBlockElement[src]

impl Serialize for SlackInputBlockElement[src]

impl StructuralPartialEq for SlackInputBlockElement[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.