pub struct SlackBlockSection {
pub block_type: String,
pub text: BlockElementPlaneTextInput,
pub block_id: Option<String>,
pub fields: Option<Vec<BlockElementPlaneTextInput>>,
pub accessory: Option<SlackBlockElement>,
}Fields§
§block_type: String§text: BlockElementPlaneTextInput§block_id: Option<String>§fields: Option<Vec<BlockElementPlaneTextInput>>§accessory: Option<SlackBlockElement>Trait Implementations§
Source§impl Clone for SlackBlockSection
impl Clone for SlackBlockSection
Source§fn clone(&self) -> SlackBlockSection
fn clone(&self) -> SlackBlockSection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SlackBlockSection
impl Debug for SlackBlockSection
Source§impl Default for SlackBlockSection
impl Default for SlackBlockSection
Source§impl<'de> Deserialize<'de> for SlackBlockSection
impl<'de> Deserialize<'de> for SlackBlockSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SlackBlockSection
impl RefUnwindSafe for SlackBlockSection
impl Send for SlackBlockSection
impl Sync for SlackBlockSection
impl Unpin for SlackBlockSection
impl UnwindSafe for SlackBlockSection
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more