pub enum PgIndexMethod {
Btree,
Hash,
Gist,
Spgist,
Gin,
Brin,
}Expand description
PostgreSQL index access methods.
Variants§
Btree
B-tree index method.
Hash
Hash index method.
Gist
GiST index method.
Spgist
SP-GiST index method.
Gin
GIN index method.
Brin
BRIN index method.
Implementations§
Trait Implementations§
Source§impl Clone for PgIndexMethod
impl Clone for PgIndexMethod
Source§fn clone(&self) -> PgIndexMethod
fn clone(&self) -> PgIndexMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PgIndexMethod
impl Debug for PgIndexMethod
Source§impl Default for PgIndexMethod
impl Default for PgIndexMethod
Source§fn default() -> PgIndexMethod
fn default() -> PgIndexMethod
Returns the “default value” for a type. Read more
Source§impl Display for PgIndexMethod
impl Display for PgIndexMethod
Source§impl FromStr for PgIndexMethod
impl FromStr for PgIndexMethod
Source§impl Hash for PgIndexMethod
impl Hash for PgIndexMethod
Source§impl Ord for PgIndexMethod
impl Ord for PgIndexMethod
Source§fn cmp(&self, other: &PgIndexMethod) -> Ordering
fn cmp(&self, other: &PgIndexMethod) -> Ordering
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 PartialEq for PgIndexMethod
impl PartialEq for PgIndexMethod
Source§fn eq(&self, other: &PgIndexMethod) -> bool
fn eq(&self, other: &PgIndexMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PgIndexMethod
impl PartialOrd for PgIndexMethod
impl Copy for PgIndexMethod
impl Eq for PgIndexMethod
impl StructuralPartialEq for PgIndexMethod
Auto Trait Implementations§
impl Freeze for PgIndexMethod
impl RefUnwindSafe for PgIndexMethod
impl Send for PgIndexMethod
impl Sync for PgIndexMethod
impl Unpin for PgIndexMethod
impl UnsafeUnpin for PgIndexMethod
impl UnwindSafe for PgIndexMethod
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