pub struct TableRow {
pub line: usize,
pub is_separator: bool,
pub column_count: usize,
pub column_alignments: Vec<String>,
}Expand description
Pre-parsed table row information
Fields§
§line: usizeLine number (1-indexed)
is_separator: boolWhether this is a separator row (contains only |, -, :, and spaces)
column_count: usizeNumber of columns (pipe-separated cells)
column_alignments: Vec<String>Alignment info from separator row
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 UnsafeUnpin 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