Struct slack_blocks::elems::Button [−][src]
pub struct Button<'a> { /* fields omitted */ }Expand description
Button
Works with block types:
An interactive component that inserts a button. The button can be a trigger for anything from opening a simple link to starting a complex workflow.
To use interactive components, you will need to make some changes to prepare your app.
Read our guide to enabling interactivity 🔗.
Implementations
impl<'a> Button<'a>[src]
impl<'a> Button<'a>[src]pub fn builder() -> ButtonBuilderInit<'a>[src]
pub fn builder() -> ButtonBuilderInit<'a>[src]Build a button!
see build::ButtonBuilder for example.
pub fn validate(&self) -> Result<(), ValidationErrors>[src]
pub fn validate(&self) -> Result<(), ValidationErrors>[src]Validate that this Button element agrees with Slack’s model requirements
Errors
- If
action_idis longer than 255 chars - If
textis longer than 75 chars - If
urlis longer than 3000 chars - If
valueis longer than 2000 chars
Example
use slack_blocks::elems::Button; let long_string = std::iter::repeat(' ').take(256).collect::<String>(); let btn = Button::builder().text("Button") .action_id(long_string) .build(); assert_eq!(true, matches!(btn.validate(), Err(_)));
Trait Implementations
impl<'de, 'a> Deserialize<'de> for Button<'a>[src]
impl<'de, 'a> Deserialize<'de> for Button<'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<'a> From<Button<'a>> for SupportedElement<'a>[src]
impl<'a> From<Button<'a>> for SupportedElement<'a>[src]impl<'a> From<Button<'a>> for BlockElement<'a>[src]
impl<'a> From<Button<'a>> for BlockElement<'a>[src]impl<'a> StructuralPartialEq for Button<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Button<'a>
impl<'a> Send for Button<'a>
impl<'a> Sync for Button<'a>
impl<'a> Unpin for Button<'a>
impl<'a> UnwindSafe for Button<'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>,