pub struct ScoredExtraction {
pub extraction: Extraction,
pub quality_score: f32,
pub pass_number: usize,
pub chunk_id: usize,
}
Expand description
Quality-scored extraction
Fields§
§extraction: Extraction
The extraction itself
quality_score: f32
Quality score (0.0 to 1.0)
pass_number: usize
Pass number where this extraction was found
chunk_id: usize
Chunk ID where this extraction was found
Trait Implementations§
Source§impl Clone for ScoredExtraction
impl Clone for ScoredExtraction
Source§fn clone(&self) -> ScoredExtraction
fn clone(&self) -> ScoredExtraction
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 ScoredExtraction
impl RefUnwindSafe for ScoredExtraction
impl Send for ScoredExtraction
impl Sync for ScoredExtraction
impl Unpin for ScoredExtraction
impl UnwindSafe for ScoredExtraction
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