pub enum SelectAccessPath {
FullTableScan,
JoinScan,
RowIdLookup,
PrimaryKeyLookup,
SecondaryIndexLookup(String),
}Variants§
Trait Implementations§
Source§impl Clone for SelectAccessPath
impl Clone for SelectAccessPath
Source§fn clone(&self) -> SelectAccessPath
fn clone(&self) -> SelectAccessPath
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 SelectAccessPath
impl Debug for SelectAccessPath
Source§impl PartialEq for SelectAccessPath
impl PartialEq for SelectAccessPath
impl Eq for SelectAccessPath
impl StructuralPartialEq for SelectAccessPath
Auto Trait Implementations§
impl Freeze for SelectAccessPath
impl RefUnwindSafe for SelectAccessPath
impl Send for SelectAccessPath
impl Sync for SelectAccessPath
impl Unpin for SelectAccessPath
impl UnsafeUnpin for SelectAccessPath
impl UnwindSafe for SelectAccessPath
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