pub struct RankedConnectionCount {
pub kind: RankedConnectionKind,
pub count: usize,
pub truncated: bool,
}Expand description
Bounded count metadata for one connection family.
Fields§
§kind: RankedConnectionKindClosed relationship family.
count: usizeNumber of validated rows observed inside the family bound.
truncated: boolWhether at least one additional row exists for this family.
Trait Implementations§
Source§impl Clone for RankedConnectionCount
impl Clone for RankedConnectionCount
Source§fn clone(&self) -> RankedConnectionCount
fn clone(&self) -> RankedConnectionCount
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 RankedConnectionCount
impl Debug for RankedConnectionCount
Source§impl<'de> Deserialize<'de> for RankedConnectionCount
impl<'de> Deserialize<'de> for RankedConnectionCount
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RankedConnectionCount
impl PartialEq for RankedConnectionCount
Source§impl Serialize for RankedConnectionCount
impl Serialize for RankedConnectionCount
impl Eq for RankedConnectionCount
impl StructuralPartialEq for RankedConnectionCount
Auto Trait Implementations§
impl Freeze for RankedConnectionCount
impl RefUnwindSafe for RankedConnectionCount
impl Send for RankedConnectionCount
impl Sync for RankedConnectionCount
impl Unpin for RankedConnectionCount
impl UnwindSafe for RankedConnectionCount
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.