pub struct PartitionCoverageReport {
pub duplicate_columns: Vec<usize>,
pub omitted_columns: Vec<usize>,
pub complete: bool,
}Expand description
Coverage evidence for one set of column partitions.
Fields§
§duplicate_columns: Vec<usize>Column indices named by more than one partition.
omitted_columns: Vec<usize>Column indices not named by any partition.
complete: boolWhether the partitions cover every column exactly once.
Trait Implementations§
Source§impl Clone for PartitionCoverageReport
impl Clone for PartitionCoverageReport
Source§fn clone(&self) -> PartitionCoverageReport
fn clone(&self) -> PartitionCoverageReport
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 PartitionCoverageReport
impl Debug for PartitionCoverageReport
impl Eq for PartitionCoverageReport
Source§impl PartialEq for PartitionCoverageReport
impl PartialEq for PartitionCoverageReport
impl StructuralPartialEq for PartitionCoverageReport
Auto Trait Implementations§
impl Freeze for PartitionCoverageReport
impl RefUnwindSafe for PartitionCoverageReport
impl Send for PartitionCoverageReport
impl Sync for PartitionCoverageReport
impl Unpin for PartitionCoverageReport
impl UnsafeUnpin for PartitionCoverageReport
impl UnwindSafe for PartitionCoverageReport
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