pub struct ReconcileSummary {
pub untracked_seen: usize,
pub untracked_cap: usize,
pub untracked_truncated: bool,
pub git_repo_present: bool,
}Fields§
§untracked_seen: usize§untracked_cap: usize§untracked_truncated: bool§git_repo_present: boolWhether a git work tree was actually present when reconcile ran
(AUD-07). false means is_git_repo returned false — not in a repo,
git binary missing/PATH-poisoned, or .git removed/corrupted — so the
git-diff backstop produced NO changes for a reason other than “clean
tree”. The close path cross-checks this against the session’s
start-of-session HEAD: if git worked at start but not at close, the
backstop was disabled mid-session and the receipt is stamped degraded.
Defaults to false so a ReconcileSummary::default() (reconcile never
ran) is treated as “git not confirmed present”, not a clean tree.
Trait Implementations§
Source§impl Clone for ReconcileSummary
impl Clone for ReconcileSummary
Source§fn clone(&self) -> ReconcileSummary
fn clone(&self) -> ReconcileSummary
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 ReconcileSummary
impl Debug for ReconcileSummary
Source§impl Default for ReconcileSummary
impl Default for ReconcileSummary
Source§fn default() -> ReconcileSummary
fn default() -> ReconcileSummary
Returns the “default value” for a type. Read more
impl Eq for ReconcileSummary
Source§impl PartialEq for ReconcileSummary
impl PartialEq for ReconcileSummary
impl StructuralPartialEq for ReconcileSummary
Auto Trait Implementations§
impl Freeze for ReconcileSummary
impl RefUnwindSafe for ReconcileSummary
impl Send for ReconcileSummary
impl Sync for ReconcileSummary
impl Unpin for ReconcileSummary
impl UnsafeUnpin for ReconcileSummary
impl UnwindSafe for ReconcileSummary
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.