Skip to content

Commit

Permalink
Merge pull request GitoxideLabs#994 from bittrance/debug-checkout-out…
Browse files Browse the repository at this point in the history
…come

fix: checkout outcome now implements `Debug`.
  • Loading branch information
Byron authored Aug 20, 2023
2 parents 9fe7b6d + 995545c commit 518f9b1
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 518f9b1

Please sign in to comment.