pub enum SetOpStrategy {
SETOP_SORTED = 0,
SETOP_HASHED = 1,
}Variants§
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 (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 SetOpStrategy
Source§impl Debug for SetOpStrategy
impl Debug for SetOpStrategy
Source§impl<'de> Deserialize<'de> for SetOpStrategy
impl<'de> Deserialize<'de> for SetOpStrategy
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
impl Eq for SetOpStrategy
Source§impl PartialEq for SetOpStrategy
impl PartialEq for SetOpStrategy
Source§fn eq(&self, other: &SetOpStrategy) -> bool
fn eq(&self, other: &SetOpStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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