pub enum Strategy {
Lattice,
LatticeStrict,
Stream,
Explicit,
}Expand description
Strategy for table detection.
Variants§
Lattice
Detect tables using visible lines and rect edges.
LatticeStrict
Detect tables using only visible lines (no rect edges).
Stream
Detect tables from text alignment patterns (no visible borders needed).
Explicit
Detect tables using user-provided line coordinates.
Trait Implementations§
impl Copy for Strategy
impl Eq for Strategy
impl StructuralPartialEq for Strategy
Auto Trait Implementations§
impl Freeze for Strategy
impl RefUnwindSafe for Strategy
impl Send for Strategy
impl Sync for Strategy
impl Unpin for Strategy
impl UnsafeUnpin for Strategy
impl UnwindSafe for Strategy
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