Struct aws_sdk_codecommit::types::ConflictMetadata
source · #[non_exhaustive]pub struct ConflictMetadata {
pub file_path: Option<String>,
pub file_sizes: Option<FileSizes>,
pub file_modes: Option<FileModes>,
pub object_types: Option<ObjectTypes>,
pub number_of_conflicts: i32,
pub is_binary_file: Option<IsBinaryFile>,
pub content_conflict: bool,
pub file_mode_conflict: bool,
pub object_type_conflict: bool,
pub merge_operations: Option<MergeOperations>,
}Expand description
Information about the metadata for a conflict in a merge operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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.
file_modes: Option<FileModes>The file modes of the file in the source, destination, and base of the merge.
object_types: Option<ObjectTypes>Information about any object type conflicts in a merge operation.
number_of_conflicts: i32The number of conflicts, including both hunk conflicts and metadata conflicts.
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.
content_conflict: boolA boolean value indicating whether there are conflicts in the content of a file.
file_mode_conflict: boolA boolean value indicating whether there are conflicts in the file mode of a file.
object_type_conflict: boolA boolean value (true or false) indicating whether there are conflicts between the branches in the object type of a file, folder, or submodule.
merge_operations: Option<MergeOperations>Whether an add, modify, or delete operation caused the conflict between the source and destination of the merge.
Implementations§
source§impl ConflictMetadata
impl ConflictMetadata
sourcepub fn file_sizes(&self) -> Option<&FileSizes>
pub fn file_sizes(&self) -> Option<&FileSizes>
The file sizes of the file in the source, destination, and base of the merge.
sourcepub fn file_modes(&self) -> Option<&FileModes>
pub fn file_modes(&self) -> Option<&FileModes>
The file modes of the file in the source, destination, and base of the merge.
sourcepub fn object_types(&self) -> Option<&ObjectTypes>
pub fn object_types(&self) -> Option<&ObjectTypes>
Information about any object type conflicts in a merge operation.
sourcepub fn number_of_conflicts(&self) -> i32
pub fn number_of_conflicts(&self) -> i32
The number of conflicts, including both hunk conflicts and metadata conflicts.
sourcepub fn is_binary_file(&self) -> Option<&IsBinaryFile>
pub fn is_binary_file(&self) -> 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.
sourcepub fn content_conflict(&self) -> bool
pub fn content_conflict(&self) -> bool
A boolean value indicating whether there are conflicts in the content of a file.
sourcepub fn file_mode_conflict(&self) -> bool
pub fn file_mode_conflict(&self) -> bool
A boolean value indicating whether there are conflicts in the file mode of a file.
sourcepub fn object_type_conflict(&self) -> bool
pub fn object_type_conflict(&self) -> 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.
sourcepub fn merge_operations(&self) -> Option<&MergeOperations>
pub fn merge_operations(&self) -> Option<&MergeOperations>
Whether an add, modify, or delete operation caused the conflict between the source and destination of the merge.
source§impl ConflictMetadata
impl ConflictMetadata
sourcepub fn builder() -> ConflictMetadataBuilder
pub fn builder() -> ConflictMetadataBuilder
Creates a new builder-style object to manufacture ConflictMetadata.
Trait Implementations§
source§impl Clone for ConflictMetadata
impl Clone for ConflictMetadata
source§fn clone(&self) -> ConflictMetadata
fn clone(&self) -> ConflictMetadata
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ConflictMetadata
impl Debug for ConflictMetadata
source§impl PartialEq for ConflictMetadata
impl PartialEq for ConflictMetadata
source§fn eq(&self, other: &ConflictMetadata) -> bool
fn eq(&self, other: &ConflictMetadata) -> bool
self and other values to be equal, and is used
by ==.