pub struct IndexHint {
pub table: Option<String>,
pub index_name: String,
pub hint_type: IndexHintType,
}Expand description
An index hint.
Fields§
§table: Option<String>Table the index belongs to.
index_name: StringIndex name.
hint_type: IndexHintTypeHint type.
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