pub struct Solved {
pub width: Length,
pub height: Length,
pub cells: Vec<TabularCellBox>,
pub xs: Vec<Length>,
pub ys: Vec<Length>,
}Expand description
Tabular.main’s result (tabular.ml:309). xs ascends from 0 (column
boundaries); ys descends from height (row tops,
handlePdf.ml:214-220) down to 0.
Fields§
§width: Length§height: Length§cells: Vec<TabularCellBox>§xs: Vec<Length>§ys: Vec<Length>Trait Implementations§
impl StructuralPartialEq for Solved
Auto Trait Implementations§
impl Freeze for Solved
impl RefUnwindSafe for Solved
impl Send for Solved
impl Sync for Solved
impl Unpin for Solved
impl UnsafeUnpin for Solved
impl UnwindSafe for Solved
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