pub struct ToRectangleOptions {
pub tolerance: f32,
pub auto_close: bool,
pub ignore_open_empty_sub_paths: bool,
pub ignore_closed_empty_sub_paths: bool,
}Fields§
§tolerance: f32§auto_close: bool§ignore_open_empty_sub_paths: boolIf true don’t consider open sub-paths with no segment.
ignore_closed_empty_sub_paths: boolIf true don’t consider closed sub-paths with no segment.
Implementations§
Trait Implementations§
Source§impl Clone for ToRectangleOptions
impl Clone for ToRectangleOptions
Source§fn clone(&self) -> ToRectangleOptions
fn clone(&self) -> ToRectangleOptions
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 ToRectangleOptions
impl Debug for ToRectangleOptions
Source§impl Default for ToRectangleOptions
impl Default for ToRectangleOptions
Source§impl PartialEq for ToRectangleOptions
impl PartialEq for ToRectangleOptions
impl Copy for ToRectangleOptions
impl StructuralPartialEq for ToRectangleOptions
Auto Trait Implementations§
impl Freeze for ToRectangleOptions
impl RefUnwindSafe for ToRectangleOptions
impl Send for ToRectangleOptions
impl Sync for ToRectangleOptions
impl Unpin for ToRectangleOptions
impl UnwindSafe for ToRectangleOptions
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