pub enum TableCellContent<'a> {
Paragraph(Paragraph<'a>),
}
Variants§
Trait Implementations§
Source§impl<'a> Clone for TableCellContent<'a>
impl<'a> Clone for TableCellContent<'a>
Source§fn clone(&self) -> TableCellContent<'a>
fn clone(&self) -> TableCellContent<'a>
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<'a> Debug for TableCellContent<'a>
impl<'a> Debug for TableCellContent<'a>
Source§impl<'a> From<Paragraph<'a>> for TableCellContent<'a>
impl<'a> From<Paragraph<'a>> for TableCellContent<'a>
Source§fn from(original: Paragraph<'a>) -> TableCellContent<'a>
fn from(original: Paragraph<'a>) -> TableCellContent<'a>
Converts to this type from the input type.
Source§impl<'__input: 'a, 'a> XmlRead<'__input> for TableCellContent<'a>
impl<'__input: 'a, 'a> XmlRead<'__input> for TableCellContent<'a>
Auto Trait Implementations§
impl<'a> Freeze for TableCellContent<'a>
impl<'a> RefUnwindSafe for TableCellContent<'a>
impl<'a> Send for TableCellContent<'a>
impl<'a> Sync for TableCellContent<'a>
impl<'a> Unpin for TableCellContent<'a>
impl<'a> UnwindSafe for TableCellContent<'a>
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