pub struct IcNodeCountComparisonCounts {
pub less: usize,
pub equal: usize,
pub greater: usize,
}Expand description
IcNodeCountComparisonCounts
Number of provider groups in each node-count comparison outcome.
Fields§
§less: usizeProvider groups whose left-hand count is smaller.
equal: usizeProvider groups whose counts are equal.
greater: usizeProvider groups whose left-hand count is larger.
Trait Implementations§
Source§impl Clone for IcNodeCountComparisonCounts
impl Clone for IcNodeCountComparisonCounts
Source§fn clone(&self) -> IcNodeCountComparisonCounts
fn clone(&self) -> IcNodeCountComparisonCounts
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 moreSource§impl Debug for IcNodeCountComparisonCounts
impl Debug for IcNodeCountComparisonCounts
Source§impl Default for IcNodeCountComparisonCounts
impl Default for IcNodeCountComparisonCounts
Source§fn default() -> IcNodeCountComparisonCounts
fn default() -> IcNodeCountComparisonCounts
Returns the “default value” for a type. Read more
impl Eq for IcNodeCountComparisonCounts
impl StructuralPartialEq for IcNodeCountComparisonCounts
Auto Trait Implementations§
impl Freeze for IcNodeCountComparisonCounts
impl RefUnwindSafe for IcNodeCountComparisonCounts
impl Send for IcNodeCountComparisonCounts
impl Sync for IcNodeCountComparisonCounts
impl Unpin for IcNodeCountComparisonCounts
impl UnsafeUnpin for IcNodeCountComparisonCounts
impl UnwindSafe for IcNodeCountComparisonCounts
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