[][src]Struct rusoto_codecommit::MergeBranchesByFastForwardInput

pub struct MergeBranchesByFastForwardInput {
    pub destination_commit_specifier: String,
    pub repository_name: String,
    pub source_commit_specifier: String,
    pub target_branch: Option<String>,
}

Fields

destination_commit_specifier: String

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

repository_name: String

The name of the repository where you want to merge two branches.

source_commit_specifier: String

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

target_branch: Option<String>

The branch where the merge is applied.

Trait Implementations

impl Clone for MergeBranchesByFastForwardInput[src]

impl Debug for MergeBranchesByFastForwardInput[src]

impl Default for MergeBranchesByFastForwardInput[src]

impl PartialEq<MergeBranchesByFastForwardInput> for MergeBranchesByFastForwardInput[src]

impl Serialize for MergeBranchesByFastForwardInput[src]

impl StructuralPartialEq for MergeBranchesByFastForwardInput[src]

Auto Trait Implementations

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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.