pub struct StdGit { /* private fields */ }Implementations§
Trait Implementations§
Source§impl GitOps for StdGit
impl GitOps for StdGit
fn init(&self) -> Result<()>
fn add(&self, path: &Path) -> Result<()>
fn commit(&self, message: &str) -> Result<()>
fn pull_rebase(&self) -> Result<()>
fn push(&self) -> Result<()>
fn status(&self) -> Result<String>
fn show(&self, revision: &str) -> Result<String>
fn rebase_continue(&self) -> Result<()>
fn has_remote(&self) -> Result<bool>
fn config(&self, key: &str, value: &str) -> Result<()>
Auto Trait Implementations§
impl Freeze for StdGit
impl RefUnwindSafe for StdGit
impl Send for StdGit
impl Sync for StdGit
impl Unpin for StdGit
impl UnwindSafe for StdGit
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more