[][src]Struct rusoto_codecommit::DescribeMergeConflictsInput

pub struct DescribeMergeConflictsInput {
    pub conflict_detail_level: Option<String>,
    pub conflict_resolution_strategy: Option<String>,
    pub destination_commit_specifier: String,
    pub file_path: String,
    pub max_merge_hunks: Option<i64>,
    pub merge_option: String,
    pub next_token: Option<String>,
    pub repository_name: String,
    pub source_commit_specifier: String,
}

Fields

conflict_detail_level: Option<String>

The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

conflict_resolution_strategy: Option<String>

Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

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).

file_path: String

The path of the target files used to describe the conflicts.

max_merge_hunks: Option<i64>

The maximum number of merge hunks to include in the output.

merge_option: String

The merge option or strategy you want to use to merge the code.

next_token: Option<String>

An enumeration token that, when provided in a request, returns the next batch of the results.

repository_name: String

The name of the repository where you want to get information about a merge conflict.

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).

Trait Implementations

impl Clone for DescribeMergeConflictsInput[src]

impl Debug for DescribeMergeConflictsInput[src]

impl Default for DescribeMergeConflictsInput[src]

impl PartialEq<DescribeMergeConflictsInput> for DescribeMergeConflictsInput[src]

impl Serialize for DescribeMergeConflictsInput[src]

impl StructuralPartialEq for DescribeMergeConflictsInput[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.