pub enum SlackRichTextInlineContent {
RichText(SlackRichTextBlock),
}Variants§
RichText(SlackRichTextBlock)
Trait Implementations§
Source§impl Clone for SlackRichTextInlineContent
impl Clone for SlackRichTextInlineContent
Source§fn clone(&self) -> SlackRichTextInlineContent
fn clone(&self) -> SlackRichTextInlineContent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SlackRichTextInlineContent
impl Debug for SlackRichTextInlineContent
Source§impl<'de> Deserialize<'de> for SlackRichTextInlineContent
impl<'de> Deserialize<'de> for SlackRichTextInlineContent
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
Source§impl From<SlackRichTextBlock> for SlackRichTextInlineContent
impl From<SlackRichTextBlock> for SlackRichTextInlineContent
Source§fn from(block: SlackRichTextBlock) -> Self
fn from(block: SlackRichTextBlock) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackRichTextInlineContent
impl PartialEq for SlackRichTextInlineContent
Source§fn eq(&self, other: &SlackRichTextInlineContent) -> bool
fn eq(&self, other: &SlackRichTextInlineContent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SlackRichTextInlineContent
Auto Trait Implementations§
impl Freeze for SlackRichTextInlineContent
impl RefUnwindSafe for SlackRichTextInlineContent
impl Send for SlackRichTextInlineContent
impl Sync for SlackRichTextInlineContent
impl Unpin for SlackRichTextInlineContent
impl UnsafeUnpin for SlackRichTextInlineContent
impl UnwindSafe for SlackRichTextInlineContent
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