pub enum IndexScope {
Partition,
Local,
}Variants§
Partition
The index column is used to partition rows across nodes of a distributed database.
Local
The index column is scoped to a physical node.
Implementations§
Source§impl IndexScope
impl IndexScope
Trait Implementations§
Source§impl Clone for IndexScope
impl Clone for IndexScope
Source§fn clone(&self) -> IndexScope
fn clone(&self) -> IndexScope
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 IndexScope
impl Debug for IndexScope
Source§impl<'de> Deserialize<'de> for IndexScope
impl<'de> Deserialize<'de> for IndexScope
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 Hash for IndexScope
impl Hash for IndexScope
Source§impl PartialEq for IndexScope
impl PartialEq for IndexScope
Source§impl Serialize for IndexScope
impl Serialize for IndexScope
impl Copy for IndexScope
impl Eq for IndexScope
impl StructuralPartialEq for IndexScope
Auto Trait Implementations§
impl Freeze for IndexScope
impl RefUnwindSafe for IndexScope
impl Send for IndexScope
impl Sync for IndexScope
impl Unpin for IndexScope
impl UnwindSafe for IndexScope
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.