pub struct GitIdentity {
pub worktree_path: PathBuf,
pub worktree_hash: String,
pub git_common_dir: PathBuf,
pub branch: String,
pub branch_label: String,
pub commit: String,
}Fields§
§worktree_path: PathBuf§worktree_hash: String§git_common_dir: PathBuf§branch: String§branch_label: String§commit: StringTrait Implementations§
Source§impl Clone for GitIdentity
impl Clone for GitIdentity
Source§fn clone(&self) -> GitIdentity
fn clone(&self) -> GitIdentity
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 GitIdentity
impl Debug for GitIdentity
impl Eq for GitIdentity
Source§impl PartialEq for GitIdentity
impl PartialEq for GitIdentity
Source§fn eq(&self, other: &GitIdentity) -> bool
fn eq(&self, other: &GitIdentity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GitIdentity
Auto Trait Implementations§
impl Freeze for GitIdentity
impl RefUnwindSafe for GitIdentity
impl Send for GitIdentity
impl Sync for GitIdentity
impl Unpin for GitIdentity
impl UnsafeUnpin for GitIdentity
impl UnwindSafe for GitIdentity
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.