Enum slack_messaging::blocks::Block
source · pub enum Block {
Actions(Box<Actions>),
Context(Box<Context>),
Divider(Box<Divider>),
Header(Box<Header>),
Image(Box<Image>),
Input(Box<Input>),
Section(Box<Section>),
Video(Box<Video>),
}Expand description
Objects that can be set to blocks in Message or Attachment.
Variants§
Actions(Box<Actions>)
Actions block representation
Context(Box<Context>)
Context block representation
Divider(Box<Divider>)
Divider block representation
Header(Box<Header>)
Header block representation
Image(Box<Image>)
Image block representation
Input(Box<Input>)
Input block representation
Section(Box<Section>)
Section block representation
Video(Box<Video>)
Video block representation