pub struct InventoryCoverageResultV1 {
pub domain: PredictionInventoryDomainV1,
pub coverage: PredictionInventoryCoverageStateV1,
pub retained_rows: u64,
}Expand description
Explicit inventory coverage, including complete-empty evidence.
Fields§
§domain: PredictionInventoryDomainV1Source inventory domain.
coverage: PredictionInventoryCoverageStateV1Exhaustiveness state.
retained_rows: u64Retained row count.
Implementations§
Source§impl InventoryCoverageResultV1
impl InventoryCoverageResultV1
Sourcepub fn is_complete_empty(&self) -> bool
pub fn is_complete_empty(&self) -> bool
Whether this result proves the inventory completely empty.
Trait Implementations§
Source§impl Clone for InventoryCoverageResultV1
impl Clone for InventoryCoverageResultV1
Source§fn clone(&self) -> InventoryCoverageResultV1
fn clone(&self) -> InventoryCoverageResultV1
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 InventoryCoverageResultV1
impl Debug for InventoryCoverageResultV1
Source§impl<'de> Deserialize<'de> for InventoryCoverageResultV1
impl<'de> Deserialize<'de> for InventoryCoverageResultV1
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
impl Eq for InventoryCoverageResultV1
Source§impl Ord for InventoryCoverageResultV1
impl Ord for InventoryCoverageResultV1
Source§fn cmp(&self, other: &InventoryCoverageResultV1) -> Ordering
fn cmp(&self, other: &InventoryCoverageResultV1) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for InventoryCoverageResultV1
impl PartialOrd for InventoryCoverageResultV1
impl StructuralPartialEq for InventoryCoverageResultV1
Auto Trait Implementations§
impl Freeze for InventoryCoverageResultV1
impl RefUnwindSafe for InventoryCoverageResultV1
impl Send for InventoryCoverageResultV1
impl Sync for InventoryCoverageResultV1
impl Unpin for InventoryCoverageResultV1
impl UnsafeUnpin for InventoryCoverageResultV1
impl UnwindSafe for InventoryCoverageResultV1
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