Enum IndexType
pub enum IndexType {
Heap,
Clustered,
NonClustered,
Xml,
Spatial,
ClusteredColumnStore,
NonClusteredColumnStore,
NonclusteredHash,
}Variants§
Heap
Clustered
NonClustered
Xml
Spatial
ClusteredColumnStore
Applies to: SQL Server 2014 (12.x) and later.
NonClusteredColumnStore
Applies to: SQL Server 2012 (11.x) and later.
NonclusteredHash
NONCLUSTERED HASH indexes are supported only on memory-optimized tables.
The sys.hash_indexes view shows the current hash indexes and the hash properties.
For more information, see sys.hash_indexes (Transact-SQL).
Applies to: SQL Server 2014 (12.x) and later.
Trait Implementations§
impl StructuralPartialEq for IndexType
Auto Trait Implementations§
impl Freeze for IndexType
impl RefUnwindSafe for IndexType
impl Send for IndexType
impl Sync for IndexType
impl Unpin for IndexType
impl UnwindSafe for IndexType
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