Enum slack_blocks::blocks::actions::BlockElement [−][src]
pub enum BlockElement<'a> {
Button(Button),
Checkboxes(Checkboxes<'a>),
DatePicker(DatePicker<'a>),
Overflow(Overflow<'a>),
TextInput(TextInput<'a>),
RadioButtons(Radio<'a>),
SelectPublicChannel(PublicChannel<'a>),
SelectConversation(Conversation<'a>),
SelectUser(User<'a>),
SelectExternal(External<'a>),
SelectStatic(Static<'a>),
}Expand description
The Block Elements supported in an Action Block.
This list was pulled from the docs for all block elements 🔗, where each declares the blocks it is usable in.
Variants
Button(Button)Checkboxes(Checkboxes<'a>)DatePicker(DatePicker<'a>)Overflow(Overflow<'a>)TextInput(TextInput<'a>)RadioButtons(Radio<'a>)SelectPublicChannel(PublicChannel<'a>)All Select types are supported.
SelectConversation(Conversation<'a>)All Select types are supported.
SelectUser(User<'a>)All Select types are supported.
SelectExternal(External<'a>)All Select types are supported.
SelectStatic(Static<'a>)All Select types are supported.
Trait Implementations
impl<'a> Clone for BlockElement<'a>[src]
impl<'a> Clone for BlockElement<'a>[src]fn clone(&self) -> BlockElement<'a>[src]
fn clone(&self) -> BlockElement<'a>[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl<'a> Debug for BlockElement<'a>[src]
impl<'a> Debug for BlockElement<'a>[src]impl<'de, 'a> Deserialize<'de> for BlockElement<'a>[src]
impl<'de, 'a> Deserialize<'de> for BlockElement<'a>[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl From<Button> for BlockElement<'static>[src]
impl From<Button> for BlockElement<'static>[src]impl<'a> From<Conversation<'a>> for BlockElement<'a>[src]
impl<'a> From<Conversation<'a>> for BlockElement<'a>[src]fn from(src: Conversation<'a>) -> Self[src]
fn from(src: Conversation<'a>) -> Self[src]Performs the conversion.
impl<'a> From<DatePicker<'a>> for BlockElement<'a>[src]
impl<'a> From<DatePicker<'a>> for BlockElement<'a>[src]fn from(src: DatePicker<'a>) -> Self[src]
fn from(src: DatePicker<'a>) -> Self[src]Performs the conversion.
impl<'a> From<External<'a>> for BlockElement<'a>[src]
impl<'a> From<External<'a>> for BlockElement<'a>[src]impl<'a> From<PublicChannel<'a>> for BlockElement<'a>[src]
impl<'a> From<PublicChannel<'a>> for BlockElement<'a>[src]fn from(src: PublicChannel<'a>) -> Self[src]
fn from(src: PublicChannel<'a>) -> Self[src]Performs the conversion.
impl<'a> From<Radio<'a>> for BlockElement<'a>[src]
impl<'a> From<Radio<'a>> for BlockElement<'a>[src]impl<'a> From<Static<'a>> for BlockElement<'a>[src]
impl<'a> From<Static<'a>> for BlockElement<'a>[src]impl<'a> From<TextInput<'a>> for BlockElement<'a>[src]
impl<'a> From<TextInput<'a>> for BlockElement<'a>[src]impl<'a> From<User<'a>> for BlockElement<'a>[src]
impl<'a> From<User<'a>> for BlockElement<'a>[src]impl<'a> Hash for BlockElement<'a>[src]
impl<'a> Hash for BlockElement<'a>[src]impl<'a> PartialEq<BlockElement<'a>> for BlockElement<'a>[src]
impl<'a> PartialEq<BlockElement<'a>> for BlockElement<'a>[src]fn eq(&self, other: &BlockElement<'a>) -> bool[src]
fn eq(&self, other: &BlockElement<'a>) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &BlockElement<'a>) -> bool[src]
fn ne(&self, other: &BlockElement<'a>) -> bool[src]This method tests for !=.
impl<'a> Serialize for BlockElement<'a>[src]
impl<'a> Serialize for BlockElement<'a>[src]impl<'a> TryFrom<BlockElement<'a>> for BlockElement<'a>[src]
impl<'a> TryFrom<BlockElement<'a>> for BlockElement<'a>[src]impl<'a> StructuralPartialEq for BlockElement<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for BlockElement<'a>
impl<'a> Send for BlockElement<'a>
impl<'a> Sync for BlockElement<'a>
impl<'a> Unpin for BlockElement<'a>
impl<'a> UnwindSafe for BlockElement<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,