pub enum IndexHint {
NotIndexed,
IndexedBy(String),
}Expand description
A FROM table’s index hint.
Variants§
NotIndexed
NOT INDEXED — forbid using any index for this table (force a scan).
IndexedBy(String)
INDEXED BY name — require that the named index be used.
Trait Implementations§
impl StructuralPartialEq for IndexHint
Auto Trait Implementations§
impl Freeze for IndexHint
impl RefUnwindSafe for IndexHint
impl Send for IndexHint
impl Sync for IndexHint
impl Unpin for IndexHint
impl UnsafeUnpin 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