Skip to content

Commit

Permalink
Checkout outcome now implements debug.
Browse files Browse the repository at this point in the history
  • Loading branch information
bittrance committed Aug 20, 2023
1 parent 9fe7b6d commit 995545c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gix-worktree-state/src/checkout/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ pub struct Collision {
}

/// A path that encountered an IO error.
#[derive(Debug)]
pub struct ErrorRecord {
/// the path that encountered the error.
pub path: BString,
Expand All @@ -19,7 +20,7 @@ pub struct ErrorRecord {
}

/// The outcome of checking out an entire index.
#[derive(Default)]
#[derive(Debug, Default)]
pub struct Outcome {
/// The amount of files updated, or created.
pub files_updated: usize,
Expand Down

0 comments on commit 995545c

Please sign in to comment.