pub enum TableCellContent {
Paragraph(Paragraph),
Table(Table),
StructuredDataTag(Box<StructuredDataTag>),
TableOfContents(Box<TableOfContents>),
}
Variants§
Paragraph(Paragraph)
Table(Table)
StructuredDataTag(Box<StructuredDataTag>)
TableOfContents(Box<TableOfContents>)
Trait Implementations§
Source§impl Clone for TableCellContent
impl Clone for TableCellContent
Source§fn clone(&self) -> TableCellContent
fn clone(&self) -> TableCellContent
Returns a copy 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 TableCellContent
impl Debug for TableCellContent
Source§impl PartialEq for TableCellContent
impl PartialEq for TableCellContent
Source§impl Serialize for TableCellContent
impl Serialize for TableCellContent
impl StructuralPartialEq for TableCellContent
Auto Trait Implementations§
impl Freeze for TableCellContent
impl RefUnwindSafe for TableCellContent
impl Send for TableCellContent
impl Sync for TableCellContent
impl Unpin for TableCellContent
impl UnwindSafe for TableCellContent
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