pub struct TableData {
pub headers: Option<Vec<String>>,
pub rows: Vec<Vec<String>>,
}Expand description
读取过程中从文档提取的完整表格数据。
Fields§
§headers: Option<Vec<String>>表头行(如有)。
rows: Vec<Vec<String>>数据行。
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TableData
impl RefUnwindSafe for TableData
impl Send for TableData
impl Sync for TableData
impl Unpin for TableData
impl UnsafeUnpin for TableData
impl UnwindSafe for TableData
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