Struct slack_blocks::blocks::Input [−][src]
pub struct Input<'a> { /* fields omitted */ }Expand description
Input Block
A block that collects information from users -
Read slack’s guide to using modals 🔗 to learn how input blocks pass information to your app.
Implementations
impl<'a> Input<'a>[src]
impl<'a> Input<'a>[src]pub fn builder() -> InputBuilderInit<'a>[src]
pub fn builder() -> InputBuilderInit<'a>[src]Build a new input block
For example, see blocks::input::build::InputBuilder.
pub fn validate(&self) -> Result<(), ValidationErrors>[src]
pub fn validate(&self) -> Result<(), ValidationErrors>[src]Validate that this Input block agrees with Slack’s model requirements
Errors
- If
from_label_and_elementwas passed a Text object longer than 2000 chars - If
with_hintwas called with a block id longer than 2000 chars - If
with_block_idwas called with a block id longer than 256 chars
Example
use slack_blocks::{blocks, elems::select}; let select = select::PublicChannel::builder().placeholder("Pick a channel...") .action_id("ABC123") .build(); let long_string = std::iter::repeat(' ').take(2001).collect::<String>(); let block = blocks::Input ::builder() .label("On a scale from 1 - 5, how angsty are you?") .element(select) .block_id(long_string) .build(); assert_eq!(true, matches!(block.validate(), Err(_))); // < send to slack API >
Trait Implementations
impl<'de, 'a> Deserialize<'de> for Input<'a>[src]
impl<'de, 'a> Deserialize<'de> for Input<'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> StructuralPartialEq for Input<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Input<'a>
impl<'a> Send for Input<'a>
impl<'a> Sync for Input<'a>
impl<'a> Unpin for Input<'a>
impl<'a> UnwindSafe for Input<'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>,