Enum gix::object::tree::diff::change::Event

source ·
pub enum Event<'a, 'old, 'new> {
    Addition {
        entry_mode: EntryMode,
        id: Id<'new>,
    },
    Deletion {
        entry_mode: EntryMode,
        id: Id<'old>,
    },
    Modification {
        previous_entry_mode: EntryMode,
        previous_id: Id<'old>,
        entry_mode: EntryMode,
        id: Id<'new>,
    },
    Rewrite {
        source_location: &'a BStr,
        source_entry_mode: EntryMode,
        source_id: Id<'old>,
        diff: Option<DiffLineStats>,
        entry_mode: EntryMode,
        id: Id<'new>,
        copy: bool,
    },
}
Available on crate feature blob-diff only.
Expand description

An event emitted when finding differences between two trees.

Variants§

§

Addition

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

Fields

§entry_mode: EntryMode

The mode of the added entry.

§id: Id<'new>

The object id of the added entry.

§

Deletion

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

Fields

§entry_mode: EntryMode

The mode of the deleted entry.

§id: Id<'old>

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

§previous_entry_mode: EntryMode

The mode of the entry before the modification.

§previous_id: Id<'old>

The object id of the entry before the modification.

§entry_mode: EntryMode

The mode of the entry after the modification.

§id: Id<'new>

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 operation.

It may be empty if neither file names nor file paths are tracked.

§source_entry_mode: EntryMode

The mode of the entry before the rename.

§source_id: Id<'old>

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: Id<'new>

The object id after the rename.

§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 Event<'_, '_, '_>

Lifecycle

source

pub fn detach(self) -> EventDetached

Detach the repository instance to obtain a fully-owned version

source§

impl<'a, 'old, 'new> Event<'a, 'old, 'new>

source

pub fn entry_mode(&self) -> EntryMode

Return the current mode of this instance.

Trait Implementations§

source§

impl<'a, 'old, 'new> Clone for Event<'a, 'old, 'new>

source§

fn clone(&self) -> Event<'a, 'old, 'new>

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, 'old, 'new> Debug for Event<'a, 'old, 'new>

source§

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

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

impl<'a, 'old, 'new> Copy for Event<'a, 'old, 'new>

Auto Trait Implementations§

§

impl<'a, 'old, 'new> Freeze for Event<'a, 'old, 'new>

§

impl<'a, 'old, 'new> !RefUnwindSafe for Event<'a, 'old, 'new>

§

impl<'a, 'old, 'new> !Send for Event<'a, 'old, 'new>

§

impl<'a, 'old, 'new> !Sync for Event<'a, 'old, 'new>

§

impl<'a, 'old, 'new> Unpin for Event<'a, 'old, 'new>

§

impl<'a, 'old, 'new> !UnwindSafe for Event<'a, 'old, 'new>

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> Same for T

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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>,

§

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.