Enum sqlparser::ast::KeyOrIndexDisplay
source · pub enum KeyOrIndexDisplay {
None,
Key,
Index,
}
Expand description
Representation whether a definition can can contains the KEY or INDEX keywords with the same meaning.
This enum initially is directed to FULLTEXT
,SPATIAL
, and UNIQUE
indexes on create table
statements of MySQL
[(1)].
Variants§
Trait Implementations§
source§impl Clone for KeyOrIndexDisplay
impl Clone for KeyOrIndexDisplay
source§fn clone(&self) -> KeyOrIndexDisplay
fn clone(&self) -> KeyOrIndexDisplay
Returns a copy 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 KeyOrIndexDisplay
impl Debug for KeyOrIndexDisplay
source§impl<'de> Deserialize<'de> for KeyOrIndexDisplay
impl<'de> Deserialize<'de> for KeyOrIndexDisplay
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 Display for KeyOrIndexDisplay
impl Display for KeyOrIndexDisplay
source§impl Hash for KeyOrIndexDisplay
impl Hash for KeyOrIndexDisplay
source§impl Ord for KeyOrIndexDisplay
impl Ord for KeyOrIndexDisplay
source§fn cmp(&self, other: &KeyOrIndexDisplay) -> Ordering
fn cmp(&self, other: &KeyOrIndexDisplay) -> Ordering
1.21.0 · 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<KeyOrIndexDisplay> for KeyOrIndexDisplay
impl PartialEq<KeyOrIndexDisplay> for KeyOrIndexDisplay
source§fn eq(&self, other: &KeyOrIndexDisplay) -> bool
fn eq(&self, other: &KeyOrIndexDisplay) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<KeyOrIndexDisplay> for KeyOrIndexDisplay
impl PartialOrd<KeyOrIndexDisplay> for KeyOrIndexDisplay
source§fn partial_cmp(&self, other: &KeyOrIndexDisplay) -> Option<Ordering>
fn partial_cmp(&self, other: &KeyOrIndexDisplay) -> Option<Ordering>
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