pub enum IndexKind {
BTree,
Hash,
FullText,
Spatial,
Other,
}Expand description
Broad index kind.
Variants§
BTree
B-tree-like index.
Hash
Hash-like index.
FullText
Full-text or search index.
Spatial
Spatial index.
Other
Other or unspecified index kind.
Trait Implementations§
Source§impl Ord for IndexKind
impl Ord for IndexKind
1.21.0 (const: unstable) · 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 PartialOrd for IndexKind
impl PartialOrd for IndexKind
impl Copy for IndexKind
impl Eq for IndexKind
impl StructuralPartialEq for IndexKind
Auto Trait Implementations§
impl Freeze for IndexKind
impl RefUnwindSafe for IndexKind
impl Send for IndexKind
impl Sync for IndexKind
impl Unpin for IndexKind
impl UnsafeUnpin for IndexKind
impl UnwindSafe for IndexKind
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