pub enum HotEventKindToken {
FileAdded,
FileDeleted,
FileModified,
FileRenamed,
FunctionExtracted,
FunctionDeleted,
FunctionRenamed,
FunctionModified,
FunctionMoved,
SignatureChanged,
DependencyChanged,
}Expand description
Pure mirror of hot-event kinds used for planning and labels.
Variant names match semantic::HotEventKind and the CLI HotEventKindArg
clap surface one-to-one.
Variants§
FileAdded
FileDeleted
FileModified
FileRenamed
FunctionExtracted
FunctionDeleted
FunctionRenamed
FunctionModified
FunctionMoved
SignatureChanged
DependencyChanged
Trait Implementations§
Source§impl Clone for HotEventKindToken
impl Clone for HotEventKindToken
Source§fn clone(&self) -> HotEventKindToken
fn clone(&self) -> HotEventKindToken
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 moreimpl Copy for HotEventKindToken
Source§impl Debug for HotEventKindToken
impl Debug for HotEventKindToken
impl Eq for HotEventKindToken
Source§impl Hash for HotEventKindToken
impl Hash for HotEventKindToken
Source§impl Ord for HotEventKindToken
impl Ord for HotEventKindToken
Source§fn cmp(&self, other: &HotEventKindToken) -> Ordering
fn cmp(&self, other: &HotEventKindToken) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for HotEventKindToken
impl PartialEq for HotEventKindToken
Source§impl PartialOrd for HotEventKindToken
impl PartialOrd for HotEventKindToken
impl StructuralPartialEq for HotEventKindToken
Auto Trait Implementations§
impl Freeze for HotEventKindToken
impl RefUnwindSafe for HotEventKindToken
impl Send for HotEventKindToken
impl Sync for HotEventKindToken
impl Unpin for HotEventKindToken
impl UnsafeUnpin for HotEventKindToken
impl UnwindSafe for HotEventKindToken
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