pub enum CollectionIndexType {
Default = 0,
List = 1,
MapKeys = 2,
MapValues = 3,
}Expand description
Secondary index collection type.
Variants§
Default = 0
Normal, scalar index.
List = 1
Index list elements.
MapKeys = 2
Index map keys.
MapValues = 3
Index map values.
Trait Implementations§
Source§impl Clone for CollectionIndexType
impl Clone for CollectionIndexType
Source§fn clone(&self) -> CollectionIndexType
fn clone(&self) -> CollectionIndexType
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 CollectionIndexType
impl Debug for CollectionIndexType
Source§impl Display for CollectionIndexType
impl Display for CollectionIndexType
Source§impl PartialEq for CollectionIndexType
impl PartialEq for CollectionIndexType
impl Eq for CollectionIndexType
impl StructuralPartialEq for CollectionIndexType
Auto Trait Implementations§
impl Freeze for CollectionIndexType
impl RefUnwindSafe for CollectionIndexType
impl Send for CollectionIndexType
impl Sync for CollectionIndexType
impl Unpin for CollectionIndexType
impl UnsafeUnpin for CollectionIndexType
impl UnwindSafe for CollectionIndexType
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