pub enum BehindKind {
Diverged,
Stale,
}Expand description
Whether a behind-base feature branch also carries unique commits.
Variants§
Diverged
Has commits base lacks AND is behind base — history split (rebase onto base).
Stale
No unique commits, just behind base — merged/stale (switch to base & delete).
Trait Implementations§
Source§impl Clone for BehindKind
impl Clone for BehindKind
Source§fn clone(&self) -> BehindKind
fn clone(&self) -> BehindKind
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 BehindKind
Source§impl Debug for BehindKind
impl Debug for BehindKind
impl Eq for BehindKind
Source§impl PartialEq for BehindKind
impl PartialEq for BehindKind
Source§fn eq(&self, other: &BehindKind) -> bool
fn eq(&self, other: &BehindKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BehindKind
Auto Trait Implementations§
impl Freeze for BehindKind
impl RefUnwindSafe for BehindKind
impl Send for BehindKind
impl Sync for BehindKind
impl Unpin for BehindKind
impl UnsafeUnpin for BehindKind
impl UnwindSafe for BehindKind
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.