pub struct LfsStatusSummary {
pub staged_lfs: Vec<String>,
pub staged_not_lfs: Vec<String>,
pub unstaged_lfs: Vec<String>,
pub untracked_attributes: Vec<String>,
}Expand description
Summary of LFS status from git lfs status.
Fields§
§staged_lfs: Vec<String>Files staged as LFS pointers (correctly tracked).
staged_not_lfs: Vec<String>Files staged that should be LFS but are being committed as regular files.
unstaged_lfs: Vec<String>Files not staged that have LFS modifications.
untracked_attributes: Vec<String>Files with LFS attributes in .gitattributes but not tracked by LFS.
Implementations§
Trait Implementations§
Source§impl Clone for LfsStatusSummary
impl Clone for LfsStatusSummary
Source§fn clone(&self) -> LfsStatusSummary
fn clone(&self) -> LfsStatusSummary
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 LfsStatusSummary
impl Debug for LfsStatusSummary
Source§impl Default for LfsStatusSummary
impl Default for LfsStatusSummary
Source§fn default() -> LfsStatusSummary
fn default() -> LfsStatusSummary
Returns the “default value” for a type. Read more
Source§impl PartialEq for LfsStatusSummary
impl PartialEq for LfsStatusSummary
impl Eq for LfsStatusSummary
impl StructuralPartialEq for LfsStatusSummary
Auto Trait Implementations§
impl Freeze for LfsStatusSummary
impl RefUnwindSafe for LfsStatusSummary
impl Send for LfsStatusSummary
impl Sync for LfsStatusSummary
impl Unpin for LfsStatusSummary
impl UnsafeUnpin for LfsStatusSummary
impl UnwindSafe for LfsStatusSummary
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.