pub enum MergeDetectionMethod {
Standard,
Squash,
GitHubPR,
FileContent,
}Expand description
Different methods available for merge detection
Variants§
Standard
Standard git merge detection using git branch --merged
Squash
Detect squash merges by analyzing commit content
GitHubPR
Use GitHub CLI to check PR merge status
FileContent
Compare file contents between branch and main
Implementations§
Trait Implementations§
Source§impl Clone for MergeDetectionMethod
impl Clone for MergeDetectionMethod
Source§fn clone(&self) -> MergeDetectionMethod
fn clone(&self) -> MergeDetectionMethod
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 MergeDetectionMethod
impl Debug for MergeDetectionMethod
impl Eq for MergeDetectionMethod
Source§impl PartialEq for MergeDetectionMethod
impl PartialEq for MergeDetectionMethod
Source§fn eq(&self, other: &MergeDetectionMethod) -> bool
fn eq(&self, other: &MergeDetectionMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MergeDetectionMethod
Auto Trait Implementations§
impl Freeze for MergeDetectionMethod
impl RefUnwindSafe for MergeDetectionMethod
impl Send for MergeDetectionMethod
impl Sync for MergeDetectionMethod
impl Unpin for MergeDetectionMethod
impl UnsafeUnpin for MergeDetectionMethod
impl UnwindSafe for MergeDetectionMethod
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.