pub enum SlackTableCell {
RawText(SlackTableRawTextCell),
RichText(SlackTableRichTextCell),
}Variants§
RawText(SlackTableRawTextCell)
RichText(SlackTableRichTextCell)
Trait Implementations§
Source§impl Clone for SlackTableCell
impl Clone for SlackTableCell
Source§fn clone(&self) -> SlackTableCell
fn clone(&self) -> SlackTableCell
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 SlackTableCell
impl Debug for SlackTableCell
Source§impl<'de> Deserialize<'de> for SlackTableCell
impl<'de> Deserialize<'de> for SlackTableCell
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 PartialEq for SlackTableCell
impl PartialEq for SlackTableCell
Source§fn eq(&self, other: &SlackTableCell) -> bool
fn eq(&self, other: &SlackTableCell) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SlackTableCell
impl Serialize for SlackTableCell
impl StructuralPartialEq for SlackTableCell
Auto Trait Implementations§
impl Freeze for SlackTableCell
impl RefUnwindSafe for SlackTableCell
impl Send for SlackTableCell
impl Sync for SlackTableCell
impl Unpin for SlackTableCell
impl UnsafeUnpin for SlackTableCell
impl UnwindSafe for SlackTableCell
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