pub trait GitRepository:
ComponentRepository
+ TransferProgress
+ FilePath
+ Url {
// Provided methods
fn get_reference_name(&self) -> Option<String> { ... }
fn exists(&self) -> bool { ... }
fn open(&self) -> Option<Repository> { ... }
fn git_fetch_and_fast_forward(&self) { ... }
fn git_fetch(&self) { ... }
fn git_fast_forward(&self) { ... }
fn git_clone(&self) { ... }
fn git_checkout(&self, branch_name: String) { ... }
}
Provided Methods§
fn get_reference_name(&self) -> Option<String>
fn exists(&self) -> bool
fn open(&self) -> Option<Repository>
fn git_fetch_and_fast_forward(&self)
fn git_fetch(&self)
fn git_fast_forward(&self)
fn git_clone(&self)
fn git_checkout(&self, branch_name: String)
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.