pub enum IndexPriority {
High,
Medium,
Low,
}Expand description
Priority of the index recommendation
Variants§
High
High priority index recommendation
Medium
Medium priority index recommendation
Low
Low priority index recommendation
Implementations§
Trait Implementations§
Source§impl Clone for IndexPriority
impl Clone for IndexPriority
Source§fn clone(&self) -> IndexPriority
fn clone(&self) -> IndexPriority
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IndexPriority
impl Debug for IndexPriority
Source§impl<'de> Deserialize<'de> for IndexPriority
impl<'de> Deserialize<'de> for IndexPriority
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
impl Eq for IndexPriority
Source§impl PartialEq for IndexPriority
impl PartialEq for IndexPriority
Source§impl Serialize for IndexPriority
impl Serialize for IndexPriority
impl StructuralPartialEq for IndexPriority
Auto Trait Implementations§
impl Freeze for IndexPriority
impl RefUnwindSafe for IndexPriority
impl Send for IndexPriority
impl Sync for IndexPriority
impl Unpin for IndexPriority
impl UnsafeUnpin for IndexPriority
impl UnwindSafe for IndexPriority
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