pub struct GeometryFixOptions {
pub epsilon: f64,
pub mode: GeometryFixMode,
pub keep_collapsed: bool,
}Expand description
Options controlling make-valid behavior.
Fields§
§epsilon: f64Predicate epsilon.
mode: GeometryFixModeStrategy mode.
keep_collapsed: boolPreserve collapsed remnants when possible.
Trait Implementations§
Source§impl Clone for GeometryFixOptions
impl Clone for GeometryFixOptions
Source§fn clone(&self) -> GeometryFixOptions
fn clone(&self) -> GeometryFixOptions
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 GeometryFixOptions
impl Debug for GeometryFixOptions
Source§impl Default for GeometryFixOptions
impl Default for GeometryFixOptions
Source§impl PartialEq for GeometryFixOptions
impl PartialEq for GeometryFixOptions
Source§fn eq(&self, other: &GeometryFixOptions) -> bool
fn eq(&self, other: &GeometryFixOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GeometryFixOptions
impl StructuralPartialEq for GeometryFixOptions
Auto Trait Implementations§
impl Freeze for GeometryFixOptions
impl RefUnwindSafe for GeometryFixOptions
impl Send for GeometryFixOptions
impl Sync for GeometryFixOptions
impl Unpin for GeometryFixOptions
impl UnsafeUnpin for GeometryFixOptions
impl UnwindSafe for GeometryFixOptions
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