pub struct TableRow {
pub cells: Vec<TableRowChild>,
pub has_numbering: bool,
pub property: TableRowProperty,
}
Fields§
§cells: Vec<TableRowChild>
§has_numbering: bool
§property: TableRowProperty
Implementations§
Source§impl TableRow
impl TableRow
pub fn new(cells: Vec<TableCell>) -> TableRow
pub fn grid_after(self, grid_after: u32) -> TableRow
pub fn width_after(self, w: f32) -> TableRow
pub fn grid_before(self, grid_before: u32) -> TableRow
pub fn width_before(self, w: f32) -> TableRow
pub fn row_height(self, h: f32) -> TableRow
pub fn height_rule(self, r: HeightRule) -> TableRow
pub fn delete(self, d: Delete) -> TableRow
pub fn insert(self, i: Insert) -> TableRow
Trait Implementations§
Source§impl ElementReader for TableRow
impl ElementReader for TableRow
fn read<R: Read>( r: &mut EventReader<R>, _: &[OwnedAttribute], ) -> Result<Self, ReaderError>
impl StructuralPartialEq for TableRow
Auto Trait Implementations§
impl Freeze for TableRow
impl RefUnwindSafe for TableRow
impl Send for TableRow
impl Sync for TableRow
impl Unpin for TableRow
impl UnwindSafe for TableRow
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