pub enum TeradataIndexKind {
NoPrimary,
Primary,
PrimaryAmp,
Unique,
UniquePrimary,
Secondary,
}Expand description
Kind of Teradata index
Variants§
NoPrimary
NO PRIMARY INDEX
Primary
PRIMARY INDEX
PrimaryAmp
PRIMARY AMP INDEX
Unique
UNIQUE INDEX
UniquePrimary
UNIQUE PRIMARY INDEX
Secondary
INDEX (secondary, non-primary)
Trait Implementations§
Source§impl Clone for TeradataIndexKind
impl Clone for TeradataIndexKind
Source§fn clone(&self) -> TeradataIndexKind
fn clone(&self) -> TeradataIndexKind
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 TeradataIndexKind
impl Debug for TeradataIndexKind
Source§impl<'de> Deserialize<'de> for TeradataIndexKind
impl<'de> Deserialize<'de> for TeradataIndexKind
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 PartialEq for TeradataIndexKind
impl PartialEq for TeradataIndexKind
Source§impl Serialize for TeradataIndexKind
impl Serialize for TeradataIndexKind
impl StructuralPartialEq for TeradataIndexKind
Auto Trait Implementations§
impl Freeze for TeradataIndexKind
impl RefUnwindSafe for TeradataIndexKind
impl Send for TeradataIndexKind
impl Sync for TeradataIndexKind
impl Unpin for TeradataIndexKind
impl UnwindSafe for TeradataIndexKind
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