pub struct TableParseResult {
pub tables: Vec<ExtractedTable>,
pub confidence: f32,
pub metadata: ParseMetadata,
pub warnings: Vec<String>,
}Expand description
Table parsing result
Fields§
§tables: Vec<ExtractedTable>Extracted tables
confidence: f32Parsing confidence
metadata: ParseMetadataParsing metadata
warnings: Vec<String>Warnings and issues
Trait Implementations§
Source§impl Clone for TableParseResult
impl Clone for TableParseResult
Source§fn clone(&self) -> TableParseResult
fn clone(&self) -> TableParseResult
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 TableParseResult
impl RefUnwindSafe for TableParseResult
impl Send for TableParseResult
impl Sync for TableParseResult
impl Unpin for TableParseResult
impl UnwindSafe for TableParseResult
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