pub enum QueryIndexType {
BTree,
Gin,
}Expand description
Index type enumeration for query optimization.
Variants§
BTree
B+Tree index - O(log n) range queries.
Gin
GIN (Generalized Inverted Index) - for JSONB containment queries.
Trait Implementations§
Source§impl Clone for QueryIndexType
impl Clone for QueryIndexType
Source§fn clone(&self) -> QueryIndexType
fn clone(&self) -> QueryIndexType
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 QueryIndexType
impl Debug for QueryIndexType
Source§impl Default for QueryIndexType
impl Default for QueryIndexType
Source§fn default() -> QueryIndexType
fn default() -> QueryIndexType
Returns the “default value” for a type. Read more
Source§impl PartialEq for QueryIndexType
impl PartialEq for QueryIndexType
impl Copy for QueryIndexType
impl Eq for QueryIndexType
impl StructuralPartialEq for QueryIndexType
Auto Trait Implementations§
impl Freeze for QueryIndexType
impl RefUnwindSafe for QueryIndexType
impl Send for QueryIndexType
impl Sync for QueryIndexType
impl Unpin for QueryIndexType
impl UnwindSafe for QueryIndexType
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