pub struct TableQuality {
pub accuracy: f64,
pub whitespace: f64,
}Expand description
Quality metrics for a detected table.
Fields§
§accuracy: f64Percentage of cells with non-empty text (0.0 to 1.0).
whitespace: f64Average ratio of whitespace in cell text (0.0 to 1.0, lower is better).
Trait Implementations§
Source§impl Clone for TableQuality
impl Clone for TableQuality
Source§fn clone(&self) -> TableQuality
fn clone(&self) -> TableQuality
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 moreSource§impl Debug for TableQuality
impl Debug for TableQuality
Source§impl PartialEq for TableQuality
impl PartialEq for TableQuality
impl StructuralPartialEq for TableQuality
Auto Trait Implementations§
impl Freeze for TableQuality
impl RefUnwindSafe for TableQuality
impl Send for TableQuality
impl Sync for TableQuality
impl Unpin for TableQuality
impl UnsafeUnpin for TableQuality
impl UnwindSafe for TableQuality
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