pub enum DatabaseCoverageTotalState {
Exact,
AtLeast,
}Expand description
Whether a bounded coverage total is exact or a lower bound.
Variants§
Exact
Every matching row was returned by the bounded query.
AtLeast
At least one additional row exists beyond the returned sample.
Trait Implementations§
Source§impl Clone for DatabaseCoverageTotalState
impl Clone for DatabaseCoverageTotalState
Source§fn clone(&self) -> DatabaseCoverageTotalState
fn clone(&self) -> DatabaseCoverageTotalState
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 DatabaseCoverageTotalState
Source§impl Debug for DatabaseCoverageTotalState
impl Debug for DatabaseCoverageTotalState
impl Eq for DatabaseCoverageTotalState
Source§impl PartialEq for DatabaseCoverageTotalState
impl PartialEq for DatabaseCoverageTotalState
Source§fn eq(&self, other: &DatabaseCoverageTotalState) -> bool
fn eq(&self, other: &DatabaseCoverageTotalState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DatabaseCoverageTotalState
Auto Trait Implementations§
impl Freeze for DatabaseCoverageTotalState
impl RefUnwindSafe for DatabaseCoverageTotalState
impl Send for DatabaseCoverageTotalState
impl Sync for DatabaseCoverageTotalState
impl Unpin for DatabaseCoverageTotalState
impl UnsafeUnpin for DatabaseCoverageTotalState
impl UnwindSafe for DatabaseCoverageTotalState
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.