pub enum BooleanOperation {
Exclude,
Combine,
Subtract,
Intersect,
}Expand description
TS BooleanOperation.
Variants§
Trait Implementations§
Source§impl Clone for BooleanOperation
impl Clone for BooleanOperation
Source§fn clone(&self) -> BooleanOperation
fn clone(&self) -> BooleanOperation
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 moreimpl Copy for BooleanOperation
Source§impl Debug for BooleanOperation
impl Debug for BooleanOperation
impl Eq for BooleanOperation
Source§impl PartialEq for BooleanOperation
impl PartialEq for BooleanOperation
Source§fn eq(&self, other: &BooleanOperation) -> bool
fn eq(&self, other: &BooleanOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BooleanOperation
Auto Trait Implementations§
impl Freeze for BooleanOperation
impl RefUnwindSafe for BooleanOperation
impl Send for BooleanOperation
impl Sync for BooleanOperation
impl Unpin for BooleanOperation
impl UnsafeUnpin for BooleanOperation
impl UnwindSafe for BooleanOperation
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