pub enum BooleanOperation {
Union,
Intersect,
Subtract,
Exclude,
}
Expand description
A string enum indicating the type of boolean operation applied.
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 · 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 BooleanOperation
impl Debug for BooleanOperation
Source§impl Default for BooleanOperation
impl Default for BooleanOperation
Source§fn default() -> BooleanOperation
fn default() -> BooleanOperation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BooleanOperation
impl<'de> Deserialize<'de> for BooleanOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for BooleanOperation
impl Hash for BooleanOperation
Source§impl Ord for BooleanOperation
impl Ord for BooleanOperation
Source§fn cmp(&self, other: &BooleanOperation) -> Ordering
fn cmp(&self, other: &BooleanOperation) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BooleanOperation
impl PartialEq for BooleanOperation
Source§impl PartialOrd for BooleanOperation
impl PartialOrd for BooleanOperation
Source§impl Serialize for BooleanOperation
impl Serialize for BooleanOperation
impl Copy for BooleanOperation
impl Eq for BooleanOperation
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 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.