[][src]Struct remotemob::git::GitCommand

pub struct GitCommand<'repo> {
    pub remote: String,
    // some fields omitted
}

Fields

remote: String

Methods

impl<'repo> GitCommand<'repo>[src]

pub fn new(path: Option<PathBuf>, remote: String) -> Result<GitCommand<'repo>>[src]

pub fn from_repo(repo: Repository) -> Self[src]

pub fn create_commit<'a>(&self, commit: CommitFile<'a>) -> Result<Oid, Error>[src]

Trait Implementations

impl<'repo> Git for GitCommand<'repo>[src]

impl<'repo> Store for GitCommand<'repo>[src]

Auto Trait Implementations

impl<'repo> RefUnwindSafe for GitCommand<'repo>

impl<'repo> Send for GitCommand<'repo>

impl<'repo> !Sync for GitCommand<'repo>

impl<'repo> Unpin for GitCommand<'repo>

impl<'repo> UnwindSafe for GitCommand<'repo>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,