[][src]Struct rusoto_codecommit::MergeHunk

pub struct MergeHunk {
    pub base: Option<MergeHunkDetail>,
    pub destination: Option<MergeHunkDetail>,
    pub is_conflict: Option<bool>,
    pub source: Option<MergeHunkDetail>,
}

Information about merge hunks in a merge or pull request operation.

Fields

base: Option<MergeHunkDetail>

Information about the merge hunk in the base of a merge or pull request.

destination: Option<MergeHunkDetail>

Information about the merge hunk in the destination of a merge or pull request.

is_conflict: Option<bool>

A Boolean value indicating whether a combination of hunks contains a conflict. Conflicts occur when the same file or the same lines in a file were modified in both the source and destination of a merge or pull request. Valid values include true, false, and null. True when the hunk represents a conflict and one or more files contains a line conflict. File mode conflicts in a merge do not set this to true.

source: Option<MergeHunkDetail>

Information about the merge hunk in the source of a merge or pull request.

Trait Implementations

impl Clone for MergeHunk[src]

impl Debug for MergeHunk[src]

impl Default for MergeHunk[src]

impl<'de> Deserialize<'de> for MergeHunk[src]

impl PartialEq<MergeHunk> for MergeHunk[src]

impl StructuralPartialEq for MergeHunk[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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> 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.