pub struct TableRow<'a> {
pub property: TableRowProperty,
pub cells: Vec<TableCell<'a>>,
}
Expand description
Table Row
use docx::document::*;
use docx::formatting::*;
let row = TableRow::default()
.property(TableRowProperty::default())
.push_cell(Paragraph::default())
.push_cell(
TableCell::pargraph(Paragraph::default())
.property(TableCellProperty::default())
);
Fields
property: TableRowProperty
cells: Vec<TableCell<'a>>
Implementations
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for TableRow<'a>
impl<'a> Send for TableRow<'a>
impl<'a> Sync for TableRow<'a>
impl<'a> Unpin for TableRow<'a>
impl<'a> UnwindSafe for TableRow<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more