pub enum ValueMode {
Exclusive,
Cluster,
Replace,
}Expand description
Define the behavior of the index in case a key value pair already exists
Variants§
Exclusive
An error will return if a key value pair already exists
Cluster
The value will be add to a list of values for the key, duplicate value will be collapsed to only one entry
Replace
The existing value will be replaced with the new value if a key value pair already exists
Trait Implementations§
source§impl PartialEq for ValueMode
impl PartialEq for ValueMode
impl Eq for ValueMode
impl StructuralPartialEq for ValueMode
Auto Trait Implementations§
impl Freeze for ValueMode
impl RefUnwindSafe for ValueMode
impl Send for ValueMode
impl Sync for ValueMode
impl Unpin for ValueMode
impl UnwindSafe for ValueMode
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)