pub enum GitOperationType {
ReadOnly,
Staging,
Commit,
RemoteWrite,
RemoteMerge,
Branch,
Destructive,
}Expand description
Git-specific operation types for finer-grained control
Variants§
ReadOnly
Read-only operations (status, diff, log, fetch)
Staging
Staging operations (stage, unstage)
Commit
Commit operations
RemoteWrite
Remote write operations (push)
RemoteMerge
Remote read/merge operations (pull)
Branch
Branch operations (create, switch, delete)
Destructive
Destructive operations (discard)
Trait Implementations§
Source§impl Clone for GitOperationType
impl Clone for GitOperationType
Source§fn clone(&self) -> GitOperationType
fn clone(&self) -> GitOperationType
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 GitOperationType
impl Debug for GitOperationType
Source§impl<'de> Deserialize<'de> for GitOperationType
impl<'de> Deserialize<'de> for GitOperationType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for GitOperationType
impl Display for GitOperationType
Source§impl Hash for GitOperationType
impl Hash for GitOperationType
Source§impl PartialEq for GitOperationType
impl PartialEq for GitOperationType
Source§fn eq(&self, other: &GitOperationType) -> bool
fn eq(&self, other: &GitOperationType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GitOperationType
impl Serialize for GitOperationType
impl Copy for GitOperationType
impl Eq for GitOperationType
impl StructuralPartialEq for GitOperationType
Auto Trait Implementations§
impl Freeze for GitOperationType
impl RefUnwindSafe for GitOperationType
impl Send for GitOperationType
impl Sync for GitOperationType
impl Unpin for GitOperationType
impl UnsafeUnpin for GitOperationType
impl UnwindSafe for GitOperationType
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.