pub struct IndexRecommendation {
pub field_path: String,
pub index_type: IndexType,
pub priority: IndexPriority,
pub reason: String,
pub sql: String,
pub estimated_benefit: String,
}Expand description
Index recommendation for sepecific fields
Fields§
§field_path: String§index_type: IndexType§priority: IndexPriority§reason: String§sql: String§estimated_benefit: StringTrait Implementations§
Source§impl Clone for IndexRecommendation
impl Clone for IndexRecommendation
Source§fn clone(&self) -> IndexRecommendation
fn clone(&self) -> IndexRecommendation
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 IndexRecommendation
impl Debug for IndexRecommendation
Source§impl<'de> Deserialize<'de> for IndexRecommendation
impl<'de> Deserialize<'de> for IndexRecommendation
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
Auto Trait Implementations§
impl Freeze for IndexRecommendation
impl RefUnwindSafe for IndexRecommendation
impl Send for IndexRecommendation
impl Sync for IndexRecommendation
impl Unpin for IndexRecommendation
impl UnwindSafe for IndexRecommendation
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