[][src]Struct git_workarea::MergeCommand

pub struct MergeCommand<'a> { /* fields omitted */ }

A command which has been prepared to create a merge commit.

Implementations

impl<'a> MergeCommand<'a>[src]

pub fn committer(&mut self, committer: &Identity) -> &mut Self[src]

Set the committer of the merge.

pub fn author(&mut self, author: &Identity) -> &mut Self[src]

Set the authorship of the merge.

pub fn author_date(&mut self, when: DateTime<Utc>) -> &mut Self[src]

Set the authorship date of the merge.

pub fn commit<M>(self, message: M) -> Result<CommitId, GitError> where
    M: AsRef<str>, 
[src]

Commit the merge with the given commit message.

Returns the ID of the merge commit itself.

Trait Implementations

impl<'a> Debug for MergeCommand<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for MergeCommand<'a>

impl<'a> Send for MergeCommand<'a>

impl<'a> Sync for MergeCommand<'a>

impl<'a> Unpin for MergeCommand<'a>

impl<'a> !UnwindSafe for MergeCommand<'a>

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.