We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Byron
Learn more about funding links in repositories.
Report abuse
diff::tree::ChangeDetached
1 parent f8952e4 commit c18ebbeCopy full SHA for c18ebbe
gix/src/object/tree/diff/change.rs
@@ -1,8 +1,8 @@
1
+use super::ChangeDetached;
2
use crate::bstr::{BStr, ByteSlice};
3
use crate::ext::ObjectIdExt;
4
use crate::object::tree::diff::Change;
5
use crate::Repository;
-use gix_diff::tree_with_rewrites::Change as ChangeDetached;
6
7
impl Change<'_, '_, '_> {
8
/// Produce a platform for performing a line-diff no matter whether the underlying [Change] is an addition, modification,
gix/src/object/tree/diff/mod.rs
@@ -12,6 +12,8 @@ pub enum Action {
12
Cancel,
13
}
14
15
+pub use gix_diff::tree_with_rewrites::Change as ChangeDetached;
16
+
17
/// Represents any possible change in order to turn one tree into another.
18
#[derive(Debug, Clone, Copy)]
19
pub enum Change<'a, 'old, 'new> {
0 commit comments