pub enum StatsSource {
Analyze,
Heuristic,
}Expand description
How table/index statistics were obtained.
Variants§
Analyze
From ANALYZE (sqlite_stat1 / sqlite_stat4).
Heuristic
Heuristic fallback (no ANALYZE data available).
Trait Implementations§
Source§impl Clone for StatsSource
impl Clone for StatsSource
Source§fn clone(&self) -> StatsSource
fn clone(&self) -> StatsSource
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 moreimpl Copy for StatsSource
Source§impl Debug for StatsSource
impl Debug for StatsSource
impl Eq for StatsSource
Source§impl PartialEq for StatsSource
impl PartialEq for StatsSource
Source§fn eq(&self, other: &StatsSource) -> bool
fn eq(&self, other: &StatsSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StatsSource
Auto Trait Implementations§
impl Freeze for StatsSource
impl RefUnwindSafe for StatsSource
impl Send for StatsSource
impl Sync for StatsSource
impl Unpin for StatsSource
impl UnsafeUnpin for StatsSource
impl UnwindSafe for StatsSource
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.