pub struct TableCellProperties {
pub width: Option<i32>,
pub grid_span: Option<u32>,
pub v_merge: Option<VMerge>,
pub v_align: Option<String>,
pub unknown_children: Vec<RawXmlNode>,
}Expand description
Table cell properties
Fields§
§width: Option<i32>Cell width
grid_span: Option<u32>Grid span (horizontal merge)
v_merge: Option<VMerge>Vertical merge
v_align: Option<String>Vertical alignment
unknown_children: Vec<RawXmlNode>Unknown children (preserved)
Implementations§
Trait Implementations§
Source§impl Clone for TableCellProperties
impl Clone for TableCellProperties
Source§fn clone(&self) -> TableCellProperties
fn clone(&self) -> TableCellProperties
Returns a duplicate 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 Debug for TableCellProperties
impl Debug for TableCellProperties
Source§impl Default for TableCellProperties
impl Default for TableCellProperties
Source§fn default() -> TableCellProperties
fn default() -> TableCellProperties
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableCellProperties
impl RefUnwindSafe for TableCellProperties
impl Send for TableCellProperties
impl Sync for TableCellProperties
impl Unpin for TableCellProperties
impl UnwindSafe for TableCellProperties
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