pub struct CommandGitTransport;Trait Implementations§
Source§impl Debug for CommandGitTransport
impl Debug for CommandGitTransport
Source§impl Default for CommandGitTransport
impl Default for CommandGitTransport
Source§fn default() -> CommandGitTransport
fn default() -> CommandGitTransport
Returns the “default value” for a type. Read more
Source§impl GitTransport for CommandGitTransport
impl GitTransport for CommandGitTransport
fn fetch_branch( &self, repo_path: &Path, remote: &str, branch: &str, ) -> Result<()>
fn push_refspec( &self, repo_path: &Path, remote: &str, refspec: &str, ) -> Result<()>
fn push_branch_upstream( &self, repo_path: &Path, remote: &str, branch: &str, ) -> Result<()>
fn commit( &self, repo_path: &Path, message: &str, skip_hooks: bool, ) -> Result<CommitOutcome>
Auto Trait Implementations§
impl Freeze for CommandGitTransport
impl RefUnwindSafe for CommandGitTransport
impl Send for CommandGitTransport
impl Sync for CommandGitTransport
impl Unpin for CommandGitTransport
impl UnwindSafe for CommandGitTransport
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