pub struct GitBranchStatus {
pub name: String,
pub sync: GitBranchSync,
pub dirty: bool,
}Fields§
§name: String§sync: GitBranchSync§dirty: boolTrait Implementations§
Source§impl Clone for GitBranchStatus
impl Clone for GitBranchStatus
Source§fn clone(&self) -> GitBranchStatus
fn clone(&self) -> GitBranchStatus
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 GitBranchStatus
impl Debug for GitBranchStatus
Source§impl PartialEq for GitBranchStatus
impl PartialEq for GitBranchStatus
impl Eq for GitBranchStatus
impl StructuralPartialEq for GitBranchStatus
Auto Trait Implementations§
impl Freeze for GitBranchStatus
impl RefUnwindSafe for GitBranchStatus
impl Send for GitBranchStatus
impl Sync for GitBranchStatus
impl Unpin for GitBranchStatus
impl UnsafeUnpin for GitBranchStatus
impl UnwindSafe for GitBranchStatus
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