Struct slack_blocks::blocks::Section [−][src]
pub struct Section<'a> { /* fields omitted */ }Expand description
Section Block
Available in surfaces:
A section is one of the most flexible blocks available -
it can be used as a simple text block,
in combination with text fields,
or side-by-side with any of the available block elements 🔗
Implementations
impl<'a> Section<'a>[src]
impl<'a> Section<'a>[src]pub fn builder() -> SectionBuilderInit<'a>[src]
pub fn builder() -> SectionBuilderInit<'a>[src]Build a new section block
For example, see blocks::section::build::SectionBuilder.
pub fn validate(&self) -> Result<(), ValidationErrors>[src]
pub fn validate(&self) -> Result<(), ValidationErrors>[src]Validate that this Section block agrees with Slack’s model requirements
Errors
- If
fieldscontains more than 10 fields - If one of
fieldslonger than 2000 chars - If
textlonger than 3000 chars - If
block_idlonger than 255 chars
Example
use slack_blocks::{blocks, compose::text}; let long_string = std::iter::repeat(' ').take(256).collect::<String>(); let block = blocks::Section::builder().text(text::Plain::from("file_id")) .block_id(long_string) .build(); assert_eq!(true, matches!(block.validate(), Err(_)));
Trait Implementations
impl<'de, 'a> Deserialize<'de> for Section<'a>[src]
impl<'de, 'a> Deserialize<'de> for Section<'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 Section<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Section<'a>
impl<'a> Send for Section<'a>
impl<'a> Sync for Section<'a>
impl<'a> Unpin for Section<'a>
impl<'a> UnwindSafe for Section<'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>,