pub enum ColumnChange {
Added,
Modified,
Deleted,
Renamed,
Copied,
TypeChanged,
}Expand description
One porcelain column’s change kind (X index column / Y worktree column).
Variants§
Trait Implementations§
Source§impl Clone for ColumnChange
impl Clone for ColumnChange
Source§fn clone(&self) -> ColumnChange
fn clone(&self) -> ColumnChange
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 ColumnChange
Source§impl Debug for ColumnChange
impl Debug for ColumnChange
impl Eq for ColumnChange
Source§impl PartialEq for ColumnChange
impl PartialEq for ColumnChange
Source§fn eq(&self, other: &ColumnChange) -> bool
fn eq(&self, other: &ColumnChange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ColumnChange
Auto Trait Implementations§
impl Freeze for ColumnChange
impl RefUnwindSafe for ColumnChange
impl Send for ColumnChange
impl Sync for ColumnChange
impl Unpin for ColumnChange
impl UnsafeUnpin for ColumnChange
impl UnwindSafe for ColumnChange
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