gix_status/index_as_worktree/
mod.rs

1//! Changes between an index and a worktree.
2///
3mod types;
4pub use types::{Change, Conflict, Context, EntryStatus, Error, Options, Outcome, VisitEntry};
5
6mod recorder;
7pub use recorder::{Record, Recorder};
8
9pub(super) mod function;
10///
11pub mod traits;