Trait gix_status::index_as_worktree::traits::SubmoduleStatus
source · pub trait SubmoduleStatus {
type Output;
type Error: Error + Send + Sync + 'static;
// Required method
fn status(
&mut self,
entry: &Entry,
rela_path: &BStr
) -> Result<Option<Self::Output>, Self::Error>;
}
Expand description
Determine the status of a submodule, which always indicates that it changed if present.