Enum org_rust_parser::element::TableRow
source · pub enum TableRow {
Rule,
Standard(Vec<NodeID>),
}Expand description
A row of a Table consisting of TableCells or a TableRow::Rule.
A TableRow::Rule occurs when a row begins with a hyphen:
|1|2|
|---|
|3|4|
This table’s rows are:
TableRow::Standard(TableCell, TableCell)
TableRow::Rule
TableRow::Standard(TableCell, TableCell)
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableRow
impl RefUnwindSafe for TableRow
impl Send for TableRow
impl Sync for TableRow
impl Unpin for TableRow
impl UnwindSafe for TableRow
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