pub enum AggregateKind {
FormattingPass,
ImportUpdates,
CommentUpdates,
FunctionRename,
DependencyChange,
}Expand description
What kind of aggregate group this is.
Variants§
FormattingPass
Formatting/whitespace pass across many files.
ImportUpdates
Import updates across many files.
CommentUpdates
Comment updates across many files.
FunctionRename
Cross-file function rename (same old→new name in multiple files).
DependencyChange
Same dependency added/removed across multiple files.
Trait Implementations§
Source§impl Clone for AggregateKind
impl Clone for AggregateKind
Source§fn clone(&self) -> AggregateKind
fn clone(&self) -> AggregateKind
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 AggregateKind
impl Debug for AggregateKind
impl Eq for AggregateKind
Source§impl PartialEq for AggregateKind
impl PartialEq for AggregateKind
Source§fn eq(&self, other: &AggregateKind) -> bool
fn eq(&self, other: &AggregateKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AggregateKind
Auto Trait Implementations§
impl Freeze for AggregateKind
impl RefUnwindSafe for AggregateKind
impl Send for AggregateKind
impl Sync for AggregateKind
impl Unpin for AggregateKind
impl UnsafeUnpin for AggregateKind
impl UnwindSafe for AggregateKind
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