//! Access the current change set.
usecrate::services::repo_watcher::{GitChangeSet, RepoWatcher};implRepoWatcher{/// Get the current change set and clear the cached copy.
////// This returns the last computed change set. Call
/// [`check_for_changes`](Self::check_for_changes) to refresh it.
pubfnget_change_set(&mutself)-> GitChangeSet{std::mem::take(&mutself.change_set)}/// Peek at the current change set without clearing it.
pubfnpeek_change_set(&self)->&GitChangeSet{&self.change_set
}}