pub struct TabularBox {
pub width: Length,
pub height: Length,
pub depth: Length,
pub cells: Vec<TabularCellBox>,
pub rules: Vec<GraphicsElem>,
}Expand description
The solved PHGFixedTabular payload (horzBox.ml:279), minus rules
(filled in lang-side once the rule callback runs, primitives.rs’s
prim_tabular).
Fields§
§width: Length§height: Length§depth: LengthAlways Length::ZERO (upstream dpttotal, tabular.ml:340).
cells: Vec<TabularCellBox>§rules: Vec<GraphicsElem>Trait Implementations§
Source§impl Clone for TabularBox
impl Clone for TabularBox
Source§fn clone(&self) -> TabularBox
fn clone(&self) -> TabularBox
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 TabularBox
impl Debug for TabularBox
Source§impl PartialEq for TabularBox
impl PartialEq for TabularBox
impl StructuralPartialEq for TabularBox
Auto Trait Implementations§
impl Freeze for TabularBox
impl RefUnwindSafe for TabularBox
impl Send for TabularBox
impl Sync for TabularBox
impl Unpin for TabularBox
impl UnsafeUnpin for TabularBox
impl UnwindSafe for TabularBox
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