#[repr(i32)]pub enum SetOperation {
Undefined = 0,
SetopNone = 1,
SetopUnion = 2,
SetopIntersect = 3,
SetopExcept = 4,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SetOperation
impl Clone for SetOperation
Source§fn clone(&self) -> SetOperation
fn clone(&self) -> SetOperation
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 SetOperation
impl Debug for SetOperation
Source§impl Default for SetOperation
impl Default for SetOperation
Source§fn default() -> SetOperation
fn default() -> SetOperation
Returns the “default value” for a type. Read more
Source§impl From<SetOperation> for i32
impl From<SetOperation> for i32
Source§fn from(value: SetOperation) -> i32
fn from(value: SetOperation) -> i32
Converts to this type from the input type.
Source§impl Hash for SetOperation
impl Hash for SetOperation
Source§impl Ord for SetOperation
impl Ord for SetOperation
Source§fn cmp(&self, other: &SetOperation) -> Ordering
fn cmp(&self, other: &SetOperation) -> 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 SetOperation
impl PartialEq for SetOperation
Source§impl PartialOrd for SetOperation
impl PartialOrd for SetOperation
impl Copy for SetOperation
impl Eq for SetOperation
impl StructuralPartialEq for SetOperation
Auto Trait Implementations§
impl Freeze for SetOperation
impl RefUnwindSafe for SetOperation
impl Send for SetOperation
impl Sync for SetOperation
impl Unpin for SetOperation
impl UnwindSafe for SetOperation
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