pub struct ClipSolutionD { /* private fields */ }Expand description
Result of ClipperD::execute. / ClipperD::execute 的返回值。
Implementations§
Source§impl ClipSolutionD
impl ClipSolutionD
Sourcepub fn closed_is_empty(&self) -> bool
pub fn closed_is_empty(&self) -> bool
No closed solution. / 无闭合解。
Sourcepub fn open_is_empty(&self) -> bool
pub fn open_is_empty(&self) -> bool
No open solution. / 无开放解。
Sourcepub fn iter_closed(&self) -> PathsBlobDIter<'_> ⓘ
pub fn iter_closed(&self) -> PathsBlobDIter<'_> ⓘ
Iterator over closed paths. / 闭合路径迭代器。
Sourcepub fn iter_open(&self) -> PathsBlobDIter<'_> ⓘ
pub fn iter_open(&self) -> PathsBlobDIter<'_> ⓘ
Iterator over open paths. / 开放路径迭代器。
Sourcepub fn into_lazy(self) -> (LazyPathsD, LazyPathsD)
pub fn into_lazy(self) -> (LazyPathsD, LazyPathsD)
Split into lazy holders. / 拆分为惰性包装。
Trait Implementations§
Source§impl Clone for ClipSolutionD
impl Clone for ClipSolutionD
Source§fn clone(&self) -> ClipSolutionD
fn clone(&self) -> ClipSolutionD
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 moreAuto Trait Implementations§
impl Freeze for ClipSolutionD
impl RefUnwindSafe for ClipSolutionD
impl Send for ClipSolutionD
impl Sync for ClipSolutionD
impl Unpin for ClipSolutionD
impl UnsafeUnpin for ClipSolutionD
impl UnwindSafe for ClipSolutionD
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