pub trait RepoPath<'a>: Sized {
// Required method
fn repo_path(self, path: &'a Path) -> Self;
}Expand description
Trait for git command builders that support a repository path.
Provides the repo_path method to set -C <path>.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.