pub enum Operation {
Intersection = 0,
Union = 1,
Difference = 2,
Xor = 3,
}Expand description
Which Boolean operation to perform.
Variants§
Intersection = 0
subject ∩ clipping
Union = 1
subject ∪ clipping
Difference = 2
subject \ clipping
Xor = 3
subject ⊕ clipping
Trait Implementations§
impl Copy for Operation
impl Eq for Operation
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnsafeUnpin for Operation
impl UnwindSafe for Operation
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