pub struct SvgDebugOptions {
pub show_edges: bool,
pub show_intersections: bool,
pub show_cells: bool,
pub show_tables: bool,
}Expand description
Options for the debug_tablefinder SVG output.
Controls which pipeline stages are rendered in the debug SVG.
All flags default to true.
Fields§
§show_edges: boolShow detected edges (red lines).
show_intersections: boolShow intersection points (small circles).
show_cells: boolShow cell boundaries (dashed lines).
show_tables: boolShow table bounding boxes (light blue rectangles).
Trait Implementations§
Source§impl Clone for SvgDebugOptions
impl Clone for SvgDebugOptions
Source§fn clone(&self) -> SvgDebugOptions
fn clone(&self) -> SvgDebugOptions
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 SvgDebugOptions
impl Debug for SvgDebugOptions
Auto Trait Implementations§
impl Freeze for SvgDebugOptions
impl RefUnwindSafe for SvgDebugOptions
impl Send for SvgDebugOptions
impl Sync for SvgDebugOptions
impl Unpin for SvgDebugOptions
impl UnsafeUnpin for SvgDebugOptions
impl UnwindSafe for SvgDebugOptions
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