gix_status::index_as_worktree

Trait VisitEntry

source
pub trait VisitEntry<'index> {
    type ContentChange;
    type SubmoduleStatus;

    // Required method
    fn visit_entry(
        &mut self,
        entries: &'index [Entry],
        entry: &'index Entry,
        entry_index: usize,
        rela_path: &'index BStr,
        status: EntryStatus<Self::ContentChange, Self::SubmoduleStatus>,
    );
}
Expand description

Observe the status of an entry by comparing an index entry to the worktree.

Required Associated Types§

source

type ContentChange

Data generated by comparing an entry with a file.

source

type SubmoduleStatus

Data obtained when checking the submodule status.

Required Methods§

source

fn visit_entry( &mut self, entries: &'index [Entry], entry: &'index Entry, entry_index: usize, rela_path: &'index BStr, status: EntryStatus<Self::ContentChange, Self::SubmoduleStatus>, )

Observe the status of entry at the repository-relative rela_path at entry_index (for accessing entry and surrounding in the complete list of entries).

Implementors§

source§

impl<'index, T: Send, U: Send> VisitEntry<'index> for Recorder<'index, T, U>