pub struct QualityIssue {
pub issue_type: OCRIssueType,
pub description: String,
pub severity: IssueSeverity,
pub location: Option<BoundingBox>,
pub suggested_fix: Option<String>,
}Expand description
Quality issues in OCR
Fields§
§issue_type: OCRIssueTypeIssue type
description: StringIssue description
severity: IssueSeveritySeverity
location: Option<BoundingBox>Location
suggested_fix: Option<String>Suggested fix
Trait Implementations§
Source§impl Clone for QualityIssue
impl Clone for QualityIssue
Source§fn clone(&self) -> QualityIssue
fn clone(&self) -> QualityIssue
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 QualityIssue
impl RefUnwindSafe for QualityIssue
impl Send for QualityIssue
impl Sync for QualityIssue
impl Unpin for QualityIssue
impl UnwindSafe for QualityIssue
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