pub struct Table {
pub rows: usize,
pub cols: usize,
pub children: Vec<NodeID>,
}
Expand description
A table consisting of a collection of TableRow
s
| one | two | | three | four |
Fields§
§rows: usize
§cols: usize
§children: Vec<NodeID>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin 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