pub enum RelationTotalState {
Exact(u64),
AtLeast(u64),
Unknown,
}Expand description
Typed cardinality knowledge for one bounded relation page.
Variants§
Exact(u64)
The traversal is exhausted and this total is complete.
AtLeast(u64)
At least this many rows have been emitted or proved pending.
Unknown
No useful cardinality lower bound is available yet.
Trait Implementations§
Source§impl Clone for RelationTotalState
impl Clone for RelationTotalState
Source§fn clone(&self) -> RelationTotalState
fn clone(&self) -> RelationTotalState
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 RelationTotalState
impl Debug for RelationTotalState
Source§impl PartialEq for RelationTotalState
impl PartialEq for RelationTotalState
Source§impl Serialize for RelationTotalState
impl Serialize for RelationTotalState
impl Eq for RelationTotalState
impl StructuralPartialEq for RelationTotalState
Auto Trait Implementations§
impl Freeze for RelationTotalState
impl RefUnwindSafe for RelationTotalState
impl Send for RelationTotalState
impl Sync for RelationTotalState
impl Unpin for RelationTotalState
impl UnwindSafe for RelationTotalState
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.§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
Checks if this value is equivalent to the given key. Read more