pub enum ExtractionOutcome {
Accepted,
BestAttempt,
NoContent,
}Expand description
Final status for an extraction report.
Variants§
Accepted
Extraction met the configured acceptance thresholds.
BestAttempt
Extraction returned the best available attempt below normal thresholds.
NoContent
Extraction found no usable article content.
Trait Implementations§
Source§impl Clone for ExtractionOutcome
impl Clone for ExtractionOutcome
Source§fn clone(&self) -> ExtractionOutcome
fn clone(&self) -> ExtractionOutcome
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtractionOutcome
impl Debug for ExtractionOutcome
Source§impl Default for ExtractionOutcome
impl Default for ExtractionOutcome
Source§fn default() -> ExtractionOutcome
fn default() -> ExtractionOutcome
Returns the “default value” for a type. Read more
Source§impl PartialEq for ExtractionOutcome
impl PartialEq for ExtractionOutcome
Source§impl Serialize for ExtractionOutcome
impl Serialize for ExtractionOutcome
impl StructuralPartialEq for ExtractionOutcome
Auto Trait Implementations§
impl Freeze for ExtractionOutcome
impl RefUnwindSafe for ExtractionOutcome
impl Send for ExtractionOutcome
impl Sync for ExtractionOutcome
impl Unpin for ExtractionOutcome
impl UnsafeUnpin for ExtractionOutcome
impl UnwindSafe for ExtractionOutcome
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