pub enum ConflictState {
Clean,
Conflicted,
}Expand description
Whether a jj commit has unresolved conflicts.
Variants§
Implementations§
Source§impl ConflictState
impl ConflictState
pub fn is_conflicted(self) -> bool
Trait Implementations§
Source§impl Clone for ConflictState
impl Clone for ConflictState
Source§fn clone(&self) -> ConflictState
fn clone(&self) -> ConflictState
Returns a duplicate of the value. Read more
1.0.0 · 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 ConflictState
impl Debug for ConflictState
Source§impl Default for ConflictState
impl Default for ConflictState
Source§fn default() -> ConflictState
fn default() -> ConflictState
Returns the “default value” for a type. Read more
Source§impl Hash for ConflictState
impl Hash for ConflictState
Source§impl PartialEq for ConflictState
impl PartialEq for ConflictState
impl Copy for ConflictState
impl Eq for ConflictState
impl StructuralPartialEq for ConflictState
Auto Trait Implementations§
impl Freeze for ConflictState
impl RefUnwindSafe for ConflictState
impl Send for ConflictState
impl Sync for ConflictState
impl Unpin for ConflictState
impl UnsafeUnpin for ConflictState
impl UnwindSafe for ConflictState
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