[][src]Struct rusoto_codecommit::ConflictMetadata

pub struct ConflictMetadata {
    pub content_conflict: Option<bool>,
    pub file_mode_conflict: Option<bool>,
    pub file_modes: Option<FileModes>,
    pub file_path: Option<String>,
    pub file_sizes: Option<FileSizes>,
    pub is_binary_file: Option<IsBinaryFile>,
    pub merge_operations: Option<MergeOperations>,
    pub number_of_conflicts: Option<i64>,
    pub object_type_conflict: Option<bool>,
    pub object_types: Option<ObjectTypes>,
}

Information about the metadata for a conflict in a merge operation.

Fields

content_conflict: Option<bool>

A boolean value indicating whether there are conflicts in the content of a file.

file_mode_conflict: Option<bool>

A boolean value indicating whether there are conflicts in the file mode of a file.

file_modes: Option<FileModes>

The file modes of the file in the source, destination, and base of the merge.

file_path: Option<String>

The path of the file that contains conflicts.

file_sizes: Option<FileSizes>

The file sizes of the file in the source, destination, and base of the merge.

is_binary_file: Option<IsBinaryFile>

A boolean value (true or false) indicating whether the file is binary or textual in the source, destination, and base of the merge.

merge_operations: Option<MergeOperations>

Whether an add, modify, or delete operation caused the conflict between the source and destination of the merge.

number_of_conflicts: Option<i64>

The number of conflicts, including both hunk conflicts and metadata conflicts.

object_type_conflict: Option<bool>

A boolean value (true or false) indicating whether there are conflicts between the branches in the object type of a file, folder, or submodule.

object_types: Option<ObjectTypes>

Information about any object type conflicts in a merge operation.

Trait Implementations

impl Clone for ConflictMetadata[src]

impl Debug for ConflictMetadata[src]

impl Default for ConflictMetadata[src]

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

impl PartialEq<ConflictMetadata> for ConflictMetadata[src]

impl StructuralPartialEq for ConflictMetadata[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: for<'de> Deserialize<'de>, 
[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.