pub struct VerticalAggregateRequirement {
pub id: String,
pub partitions: Vec<ColumnPartition>,
pub rule: AggregateRule,
}Expand description
One named vertical aggregate requirement over array column partitions.
Fields§
§id: StringStable requirement label retained in the report.
partitions: Vec<ColumnPartition>Column partitions checked under the shared rule.
rule: AggregateRuleAggregate rule enforced over every partition’s flattened vertical values.
Trait Implementations§
Source§impl Clone for VerticalAggregateRequirement
impl Clone for VerticalAggregateRequirement
Source§fn clone(&self) -> VerticalAggregateRequirement
fn clone(&self) -> VerticalAggregateRequirement
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 VerticalAggregateRequirement
impl Debug for VerticalAggregateRequirement
impl Eq for VerticalAggregateRequirement
impl StructuralPartialEq for VerticalAggregateRequirement
Auto Trait Implementations§
impl Freeze for VerticalAggregateRequirement
impl RefUnwindSafe for VerticalAggregateRequirement
impl Send for VerticalAggregateRequirement
impl Sync for VerticalAggregateRequirement
impl Unpin for VerticalAggregateRequirement
impl UnsafeUnpin for VerticalAggregateRequirement
impl UnwindSafe for VerticalAggregateRequirement
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