gix_diff::tree_with_rewrites

Enum ChangeRef

source
pub enum ChangeRef<'a> {
    Addition {
        location: &'a BStr,
        entry_mode: EntryMode,
        relation: Option<Relation>,
        id: ObjectId,
    },
    Deletion {
        location: &'a BStr,
        entry_mode: EntryMode,
        relation: Option<Relation>,
        id: ObjectId,
    },
    Modification {
        location: &'a BStr,
        previous_entry_mode: EntryMode,
        previous_id: ObjectId,
        entry_mode: EntryMode,
        id: ObjectId,
    },
    Rewrite {
        source_location: &'a BStr,
        source_entry_mode: EntryMode,
        source_relation: Option<Relation>,
        source_id: ObjectId,
        diff: Option<DiffLineStats>,
        entry_mode: EntryMode,
        id: ObjectId,
        location: &'a BStr,
        relation: Option<Relation>,
        copy: bool,
    },
}
Available on crate feature blob only.
Expand description

Represents any possible change in order to turn one tree into another, which references data owned by its producer.

Variants§

§

Addition

An entry was added, like the addition of a file or directory.

Fields

§location: &'a BStr

The location of the file or directory.

It may be empty if file names is None.

§entry_mode: EntryMode

The mode of the added entry.

§relation: Option<Relation>

Identifies a relationship between this instance and another one, making it easy to reconstruct the top-level of directory changes.

§id: ObjectId

The object id of the added entry.

§

Deletion

An entry was deleted, like the deletion of a file or directory.

Fields

§location: &'a BStr

The location of the file or directory.

It may be empty if file names is None. are tracked.

§entry_mode: EntryMode

The mode of the deleted entry.

§relation: Option<Relation>

Identifies a relationship between this instance and another one, making it easy to reconstruct the top-level of directory changes.

§id: ObjectId

The object id of the deleted entry.

§

Modification

An entry was modified, e.g. changing the contents of a file adjusts its object id and turning a file into a symbolic link adjusts its mode.

Fields

§location: &'a BStr

The location of the file or directory.

It may be empty if file names is None. are tracked.

§previous_entry_mode: EntryMode

The mode of the entry before the modification.

§previous_id: ObjectId

The object id of the entry before the modification.

§entry_mode: EntryMode

The mode of the entry after the modification.

§id: ObjectId

The object id after the modification.

§

Rewrite

Entries are considered rewritten if they are not trees and they, according to some understanding of identity, were renamed or copied. In case of renames, this means they originally appeared as Deletion signalling their source as well as an Addition acting as destination.

In case of copies, the copy flag is true and typically represents a perfect copy of a source was made.

This variant can only be encountered if rewrite tracking is enabled.

Note that mode changes may have occurred as well, i.e. changes from executable to non-executable or vice-versa.

Fields

§source_location: &'a BStr

The location of the source of the rename or copy operation.

It may be empty if file names is None. are tracked.

§source_entry_mode: EntryMode

The mode of the entry before the rename.

§source_relation: Option<Relation>

Identifies a relationship between the source and another source, making it easy to reconstruct the top-level of directory changes.

§source_id: ObjectId

The object id of the entry before the rename.

Note that this is the same as id if we require the similarity to be 100%, but may be different otherwise.

§diff: Option<DiffLineStats>

Information about the diff we performed to detect similarity and match the source_id with the current state at id. It’s None if source_id is equal to id, as identity made an actual diff computation unnecessary.

§entry_mode: EntryMode

The mode of the entry after the rename. It could differ but still be considered a rename as we are concerned only about content.

§id: ObjectId

The object id after the rename.

§location: &'a BStr

The location after the rename or copy operation.

It may be empty if file names is None.

§relation: Option<Relation>

Identifies a relationship between this destination and another destination, making it easy to reconstruct the top-level of directory changes.

§copy: bool

If true, this rewrite is created by copy, and source_id is pointing to its source. Otherwise, it’s a rename, and source_id points to a deleted object, as renames are tracked as deletions and additions of the same or similar content.

Implementations§

source§

impl ChangeRef<'_>

Lifecycle

source

pub fn into_owned(self) -> Change

Copy this instance into a fully-owned version

source§

impl<'a> ChangeRef<'a>

source

pub fn relation(&self) -> Option<Relation>

Return the relation this instance may have to other changes.

source

pub fn entry_mode(&self) -> EntryMode

Return the current mode of this instance.

source

pub fn location(&self) -> &'a BStr

Return the current location of the resource, i.e. the destination of a rename or copy, or the location at which an addition, deletion or modification took place.

Trait Implementations§

source§

impl<'a> Clone for ChangeRef<'a>

source§

fn clone(&self) -> ChangeRef<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for ChangeRef<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Copy for ChangeRef<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for ChangeRef<'a>

§

impl<'a> RefUnwindSafe for ChangeRef<'a>

§

impl<'a> Send for ChangeRef<'a>

§

impl<'a> Sync for ChangeRef<'a>

§

impl<'a> Unpin for ChangeRef<'a>

§

impl<'a> UnwindSafe for ChangeRef<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.