pub struct DescribeMergeConflictsOutput {
pub base_commit_id: Option<String>,
pub conflict_metadata: ConflictMetadata,
pub destination_commit_id: String,
pub merge_hunks: Vec<MergeHunk>,
pub next_token: Option<String>,
pub source_commit_id: String,
}Fields§
§base_commit_id: Option<String>The commit ID of the merge base.
conflict_metadata: ConflictMetadataContains metadata about the conflicts found in the merge.
destination_commit_id: StringThe commit ID of the destination commit specifier that was used in the merge evaluation.
merge_hunks: Vec<MergeHunk>A list of merge hunks of the differences between the files or lines.
next_token: Option<String>An enumeration token that can be used in a request to return the next batch of the results.
source_commit_id: StringThe commit ID of the source commit specifier that was used in the merge evaluation.
Trait Implementations§
Source§impl Clone for DescribeMergeConflictsOutput
impl Clone for DescribeMergeConflictsOutput
Source§fn clone(&self) -> DescribeMergeConflictsOutput
fn clone(&self) -> DescribeMergeConflictsOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescribeMergeConflictsOutput
impl Debug for DescribeMergeConflictsOutput
Source§impl Default for DescribeMergeConflictsOutput
impl Default for DescribeMergeConflictsOutput
Source§fn default() -> DescribeMergeConflictsOutput
fn default() -> DescribeMergeConflictsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeMergeConflictsOutput
impl<'de> Deserialize<'de> for DescribeMergeConflictsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeMergeConflictsOutput
impl PartialEq for DescribeMergeConflictsOutput
Source§fn eq(&self, other: &DescribeMergeConflictsOutput) -> bool
fn eq(&self, other: &DescribeMergeConflictsOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeMergeConflictsOutput
Auto Trait Implementations§
impl Freeze for DescribeMergeConflictsOutput
impl RefUnwindSafe for DescribeMergeConflictsOutput
impl Send for DescribeMergeConflictsOutput
impl Sync for DescribeMergeConflictsOutput
impl Unpin for DescribeMergeConflictsOutput
impl UnwindSafe for DescribeMergeConflictsOutput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more