pub struct Table {
pub bbox: BBox,
pub cells: Vec<Cell>,
pub rows: Vec<Vec<Cell>>,
pub columns: Vec<Vec<Cell>>,
}Expand description
A detected table.
Fields§
§bbox: BBoxBounding box enclosing the entire table.
cells: Vec<Cell>All cells in the table.
rows: Vec<Vec<Cell>>Cells organized into rows (top-to-bottom, left-to-right within each row).
columns: Vec<Vec<Cell>>Cells organized into columns (left-to-right, top-to-bottom within each column).
Trait Implementations§
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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