//! Parsed OOXML cell width type.
/// Parsed OOXML cell width: a numeric value paired with its unit type.
////// Returned by [`super::parse_width`] and consumed by `docx_rs::TableCell::width`.
#[derive(Debug, Clone, Copy, PartialEq)]pubstructParsedWidth{/// Width value in the target unit (twips for `Dxa`, percentage * 50 for `Pct`).
pubvalue:usize,
/// OOXML width type.
pubwidth_type:docx_rs::WidthType,
}