pub struct CT_TableCell {
pub text_body: Option<CT_TextBody>,
pub row_span: u32,
pub grid_span: u32,
pub horizontal_merge: bool,
pub vertical_merge: bool,
pub properties: Option<CT_TableCellProperties>,
/* private fields */
}Expand description
One table cell with typed text and the OOXML merge contract retained.
Fields§
§text_body: Option<CT_TextBody>§row_span: u32§grid_span: u32§horizontal_merge: bool§vertical_merge: bool§properties: Option<CT_TableCellProperties>Trait Implementations§
Source§impl Clone for CT_TableCell
impl Clone for CT_TableCell
Source§fn clone(&self) -> CT_TableCell
fn clone(&self) -> CT_TableCell
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CT_TableCell
impl Debug for CT_TableCell
impl Eq for CT_TableCell
Auto Trait Implementations§
impl Freeze for CT_TableCell
impl RefUnwindSafe for CT_TableCell
impl Send for CT_TableCell
impl Sync for CT_TableCell
impl Unpin for CT_TableCell
impl UnsafeUnpin for CT_TableCell
impl UnwindSafe for CT_TableCell
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