pub struct AggregateArrayReport {
pub id: String,
pub coverage: PartitionCoverageReport,
pub partitions: Vec<AggregatePartitionReport>,
pub satisfied: bool,
}Expand description
Aggregate evidence for one named vertical requirement.
Fields§
§id: StringRequirement label retained from the array.
coverage: PartitionCoverageReportPartition coverage evidence over the array’s columns.
partitions: Vec<AggregatePartitionReport>Per-partition aggregate evidence.
satisfied: boolWhether coverage and every partition both satisfied the requirement.
Trait Implementations§
Source§impl Clone for AggregateArrayReport
impl Clone for AggregateArrayReport
Source§fn clone(&self) -> AggregateArrayReport
fn clone(&self) -> AggregateArrayReport
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 AggregateArrayReport
impl Debug for AggregateArrayReport
impl Eq for AggregateArrayReport
Source§impl PartialEq for AggregateArrayReport
impl PartialEq for AggregateArrayReport
impl StructuralPartialEq for AggregateArrayReport
Auto Trait Implementations§
impl Freeze for AggregateArrayReport
impl RefUnwindSafe for AggregateArrayReport
impl Send for AggregateArrayReport
impl Sync for AggregateArrayReport
impl Unpin for AggregateArrayReport
impl UnsafeUnpin for AggregateArrayReport
impl UnwindSafe for AggregateArrayReport
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