pub struct ParsedTable {
pub header_rows: usize,
pub rows: Vec<Vec<ParsedTableCell>>,
}Expand description
A parsed table extracted from markdown or HTML.
Fields§
§header_rows: usizeNumber of header rows (typically 1 for markdown tables).
rows: Vec<Vec<ParsedTableCell>>All rows (header + body), each containing cells with their inline spans.
Trait Implementations§
Source§impl Clone for ParsedTable
impl Clone for ParsedTable
Source§fn clone(&self) -> ParsedTable
fn clone(&self) -> ParsedTable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsedTable
impl RefUnwindSafe for ParsedTable
impl Send for ParsedTable
impl Sync for ParsedTable
impl Unpin for ParsedTable
impl UnsafeUnpin for ParsedTable
impl UnwindSafe for ParsedTable
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