[−][src]Struct slack_blocks::blocks::section::Contents
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 Contents[src]
pub fn from_fields<FieldIter: IntoIterator<Item = impl Into<Text>>>(
fields: FieldIter
) -> Self[src]
fields: FieldIter
) -> Self
Construct a Section block from a collection of text objects
Arguments
fields- A collection of text objects 🔗. Any text objects included with fields will be rendered in a compact format that allows for 2 columns of side-by-side text. Maximum number of items is 10. Maximum length for the text in each item is 2000 characters.
Errors
Doesn't error. To validate your model against the length requirements,
use the validate method.
Example
use slack_blocks::blocks; use slack_blocks::compose; let fields = vec![ compose::Text::plain("Left column"), compose::Text::plain("Right column"), ]; let block = blocks::section ::Contents ::from_fields(fields); // < send to slack API >
pub fn from_text(text: impl Into<Text>) -> Self[src]
Construct a Section block from a text object
Arguments
text- The text for the block, in the form of a text object 🔗. Maximum length for the text in this field is 3000 characters.
Errors
Doesn't error. To validate your model against the length requirements,
use the validate method.
Example
use slack_blocks::blocks; use slack_blocks::compose; let block = blocks::section ::Contents ::from_text(compose::Text::plain("I am a section!")); // < send to slack API >
pub fn with_block_id(self, block_id: impl AsRef<str>) -> Self[src]
Set a unique block_id to identify this instance of an File Block.
Arguments
block_id- A string acting as a unique identifier for a block. You can use thisblock_idwhen you receive an interaction payload to identify the source of the action 🔗. If not specified, one will be generated. Maximum length for this field is 255 characters.block_idshould be unique for each message and each iteration of a message. If a message is updated, use a newblock_id.
example
use slack_blocks::blocks; use slack_blocks::compose; let file_id = upload_file_to_slack("https://www.cheese.com/cheese-wheel.png"); let block = blocks::file::Contents::from_external_id(file_id) .with_block_id("my_file_in_a_block_1234"); // < send to slack API >
pub fn validate(&self) -> Result<(), ValidationErrors>[src]
Validate that this Section block agrees with Slack's model requirements
Errors
- If
from_fieldswas called with more than 10 fields, or one of the fields contains text longer than 2000 chars - If
from_fieldswas called with one of the fields containing text longer than 2000 chars - If
from_textwas called with text longer than 3000 chars - If
with_block_idwas called with a block id longer than 255 chars
Example
use slack_blocks::blocks; use slack_blocks::compose; let long_string = std::iter::repeat(' ').take(256).collect::<String>(); let block = blocks::section ::Contents ::from_text(compose::Text::plain("file_id")) .with_block_id(long_string); assert_eq!(true, matches!(block.validate(), Err(_))); // < send to slack API >
Trait Implementations
impl Clone for Contents[src]
impl Debug for Contents[src]
impl<'de> Deserialize<'de> for Contents[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl From<Contents> for Block[src]
impl Hash for Contents[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Contents> for Contents[src]
impl Serialize for Contents[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for Contents[src]
impl Validate for Contents[src]
fn validate(&self) -> Result<(), ValidationErrors>[src]
Auto Trait Implementations
impl RefUnwindSafe for Contents
impl Send for Contents
impl Sync for Contents
impl Unpin for Contents
impl UnwindSafe for Contents
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,