pub struct ParseMetadata {
pub parser_type: ParserType,
pub processing_time_ms: u64,
pub detected_format: SourceFormat,
pub structure_confidence: f32,
}Expand description
Parse metadata
Fields§
§parser_type: ParserTypeParser used
processing_time_ms: u64Processing time
detected_format: SourceFormatSource format detected
structure_confidence: f32Table structure confidence
Trait Implementations§
Source§impl Clone for ParseMetadata
impl Clone for ParseMetadata
Source§fn clone(&self) -> ParseMetadata
fn clone(&self) -> ParseMetadata
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 ParseMetadata
impl RefUnwindSafe for ParseMetadata
impl Send for ParseMetadata
impl Sync for ParseMetadata
impl Unpin for ParseMetadata
impl UnwindSafe for ParseMetadata
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