pub struct NodeTable {
pub alignments: Vec<TableAlignment>,
pub num_columns: usize,
pub num_rows: usize,
pub num_nonempty_cells: usize,
}
Expand description
The metadata of a table
Fields§
§alignments: Vec<TableAlignment>
The table alignments
num_columns: usize
Number of columns of the table
num_rows: usize
Number of rows of the table
num_nonempty_cells: usize
Number of non-empty, non-autocompleted cells
Trait Implementations§
source§impl PartialEq for NodeTable
impl PartialEq for NodeTable
impl Eq for NodeTable
impl StructuralEq for NodeTable
impl StructuralPartialEq for NodeTable
Auto Trait Implementations§
impl RefUnwindSafe for NodeTable
impl Send for NodeTable
impl Sync for NodeTable
impl Unpin for NodeTable
impl UnwindSafe for NodeTable
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