pub enum IndexesType {
BTree,
Gin,
Gist,
Hash,
}
Expand description
Represents different types of indexes that can be used.
Variants§
BTree
Represents a B-tree index.
Gin
Represents a GIN (Generalized Inverted Index) index.
Gist
Represents a GiST (Generalized Search Tree) index.
Hash
Represents a hash index.
Trait Implementations§
Source§impl Clone for IndexesType
impl Clone for IndexesType
Source§fn clone(&self) -> IndexesType
fn clone(&self) -> IndexesType
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 IndexesType
impl Debug for IndexesType
Source§impl FromStr for IndexesType
impl FromStr for IndexesType
Source§impl PartialEq for IndexesType
impl PartialEq for IndexesType
impl Eq for IndexesType
impl StructuralPartialEq for IndexesType
Auto Trait Implementations§
impl Freeze for IndexesType
impl RefUnwindSafe for IndexesType
impl Send for IndexesType
impl Sync for IndexesType
impl Unpin for IndexesType
impl UnwindSafe for IndexesType
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