pub enum TableRowContent<'a> {
TableCell(TableCell<'a>),
SDT(SDT<'a>),
}
Variants§
Trait Implementations§
Source§impl<'a> Clone for TableRowContent<'a>
impl<'a> Clone for TableRowContent<'a>
Source§fn clone(&self) -> TableRowContent<'a>
fn clone(&self) -> TableRowContent<'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 TableRowContent<'a>
impl<'a> Debug for TableRowContent<'a>
Source§impl<'a> From<Paragraph<'a>> for TableRowContent<'a>
impl<'a> From<Paragraph<'a>> for TableRowContent<'a>
Source§impl<'a> From<TableCell<'a>> for TableRowContent<'a>
impl<'a> From<TableCell<'a>> for TableRowContent<'a>
Source§impl<'__input: 'a, 'a> XmlRead<'__input> for TableRowContent<'a>
impl<'__input: 'a, 'a> XmlRead<'__input> for TableRowContent<'a>
Auto Trait Implementations§
impl<'a> Freeze for TableRowContent<'a>
impl<'a> RefUnwindSafe for TableRowContent<'a>
impl<'a> Send for TableRowContent<'a>
impl<'a> Sync for TableRowContent<'a>
impl<'a> Unpin for TableRowContent<'a>
impl<'a> UnwindSafe for TableRowContent<'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