pub enum IndexType {
BTree,
Hash,
}Expand description
Indexing method used by that index.
This structure isn’t present on ANSI, but is found at least in MySQL CREATE TABLE,
MySQL CREATE INDEX, and Postgresql CREATE INDEX statements.
Variants§
Trait Implementations§
source§impl<'de> Deserialize<'de> for IndexType
impl<'de> Deserialize<'de> for IndexType
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Ord for IndexType
impl Ord for IndexType
source§impl PartialEq<IndexType> for IndexType
impl PartialEq<IndexType> for IndexType
source§impl PartialOrd<IndexType> for IndexType
impl PartialOrd<IndexType> for IndexType
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more