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