pub struct AggregationResult {
pub individual: Vec<SemanticChange>,
pub groups: Vec<AggregatedChange>,
}Expand description
Result of aggregation: ungrouped changes + aggregate groups.
Fields§
§individual: Vec<SemanticChange>Changes that didn’t fit any aggregation pattern (shown individually).
groups: Vec<AggregatedChange>Aggregated groups.
Trait Implementations§
Source§impl Clone for AggregationResult
impl Clone for AggregationResult
Source§fn clone(&self) -> AggregationResult
fn clone(&self) -> AggregationResult
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 AggregationResult
impl Debug for AggregationResult
Source§impl Default for AggregationResult
impl Default for AggregationResult
Source§fn default() -> AggregationResult
fn default() -> AggregationResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AggregationResult
impl RefUnwindSafe for AggregationResult
impl Send for AggregationResult
impl Sync for AggregationResult
impl Unpin for AggregationResult
impl UnsafeUnpin for AggregationResult
impl UnwindSafe for AggregationResult
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