pub struct PolyCxxNode64 {
pub depth: usize,
pub is_hole: bool,
pub path: Path64,
}Expand description
One node while traversing a C++ PolyPath64 in preorder.
前序遍历 C++ PolyPath64 时的一个结点。
Fields§
§depth: usizeDepth from tree root (0 = root). / 相对根的深度。
is_hole: boolHole flag reported by Clipper. / Clipper 报告的洞标志。
path: Path64Single contour for this node. / 该结点对应单条轮廓。
Trait Implementations§
Source§impl Clone for PolyCxxNode64
impl Clone for PolyCxxNode64
Source§fn clone(&self) -> PolyCxxNode64
fn clone(&self) -> PolyCxxNode64
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 PolyCxxNode64
impl RefUnwindSafe for PolyCxxNode64
impl Send for PolyCxxNode64
impl Sync for PolyCxxNode64
impl Unpin for PolyCxxNode64
impl UnsafeUnpin for PolyCxxNode64
impl UnwindSafe for PolyCxxNode64
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