pub struct CT_Row {
pub properties: Option<CT_TrPr>,
pub cells: Vec<CT_Tc>,
pub extra_xml: Vec<(usize, Vec<u8>)>,
}Expand description
CT_Row — A table row containing cells.
Fields§
§properties: Option<CT_TrPr>§cells: Vec<CT_Tc>§extra_xml: Vec<(usize, Vec<u8>)>Raw XML for children we do not model, tagged with the cell index they appeared before so they can be written back in place.
Implementations§
Trait Implementations§
impl StructuralPartialEq for CT_Row
Auto Trait Implementations§
impl Freeze for CT_Row
impl RefUnwindSafe for CT_Row
impl Send for CT_Row
impl Sync for CT_Row
impl Unpin for CT_Row
impl UnsafeUnpin for CT_Row
impl UnwindSafe for CT_Row
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