pub enum IndexKindFilter {
All,
Range,
Text,
Point,
Lookup,
Fulltext,
Vector,
}Expand description
Type filter for SHOW [TYPE] INDEXES. All is the explicit
unfiltered form; Fulltext and Vector parse but yield no rows
because those index types aren’t backed by anything in the catalog
yet.
Variants§
Trait Implementations§
Source§impl Clone for IndexKindFilter
impl Clone for IndexKindFilter
Source§fn clone(&self) -> IndexKindFilter
fn clone(&self) -> IndexKindFilter
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 IndexKindFilter
impl Debug for IndexKindFilter
Source§impl PartialEq for IndexKindFilter
impl PartialEq for IndexKindFilter
Source§fn eq(&self, other: &IndexKindFilter) -> bool
fn eq(&self, other: &IndexKindFilter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IndexKindFilter
impl Eq for IndexKindFilter
impl StructuralPartialEq for IndexKindFilter
Auto Trait Implementations§
impl Freeze for IndexKindFilter
impl RefUnwindSafe for IndexKindFilter
impl Send for IndexKindFilter
impl Sync for IndexKindFilter
impl Unpin for IndexKindFilter
impl UnsafeUnpin for IndexKindFilter
impl UnwindSafe for IndexKindFilter
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