#[repr(C)]pub enum ManifoldFillRule {
EvenOdd = 0,
NonZero = 1,
Positive = 2,
Negative = 3,
}Expand description
Fill rule for constructing CrossSections from polygons.
Variants§
Trait Implementations§
Source§impl Clone for ManifoldFillRule
impl Clone for ManifoldFillRule
Source§fn clone(&self) -> ManifoldFillRule
fn clone(&self) -> ManifoldFillRule
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 ManifoldFillRule
impl Debug for ManifoldFillRule
Source§impl PartialEq for ManifoldFillRule
impl PartialEq for ManifoldFillRule
Source§fn eq(&self, other: &ManifoldFillRule) -> bool
fn eq(&self, other: &ManifoldFillRule) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ManifoldFillRule
impl Eq for ManifoldFillRule
impl StructuralPartialEq for ManifoldFillRule
Auto Trait Implementations§
impl Freeze for ManifoldFillRule
impl RefUnwindSafe for ManifoldFillRule
impl Send for ManifoldFillRule
impl Sync for ManifoldFillRule
impl Unpin for ManifoldFillRule
impl UnsafeUnpin for ManifoldFillRule
impl UnwindSafe for ManifoldFillRule
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