pub struct DocumentParseResult {
pub document: MultiModalDocument,
pub confidence: f32,
pub processing_time_ms: u64,
pub warnings: Vec<String>,
pub statistics: ParseStatistics,
}Expand description
Document parsing result
Fields§
§document: MultiModalDocumentParsed document
confidence: f32Parsing confidence
processing_time_ms: u64Processing time
warnings: Vec<String>Warnings
statistics: ParseStatisticsParsing statistics
Trait Implementations§
Source§impl Clone for DocumentParseResult
impl Clone for DocumentParseResult
Source§fn clone(&self) -> DocumentParseResult
fn clone(&self) -> DocumentParseResult
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 DocumentParseResult
impl RefUnwindSafe for DocumentParseResult
impl Send for DocumentParseResult
impl Sync for DocumentParseResult
impl Unpin for DocumentParseResult
impl UnwindSafe for DocumentParseResult
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