pub struct IndexHint {
pub query_name: String,
pub reason: String,
pub suggested_columns: Vec<String>,
}Expand description
Index hint for query optimization
Fields§
§query_name: StringQuery name that would benefit from index
reason: StringReason for the suggestion
suggested_columns: Vec<String>Suggested columns to index
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IndexHint
impl RefUnwindSafe for IndexHint
impl Send for IndexHint
impl Sync for IndexHint
impl Unpin for IndexHint
impl UnwindSafe for IndexHint
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