pub struct BatchDescribeMergeConflictsOutput {
pub base_commit_id: Option<String>,
pub conflicts: Vec<Conflict>,
pub destination_commit_id: String,
pub errors: Option<Vec<CodeCommitBatchDescribeMergeConflictsError>>,
pub next_token: Option<String>,
pub source_commit_id: String,
}Fields§
§base_commit_id: Option<String>The commit ID of the merge base.
conflicts: Vec<Conflict>A list of conflicts for each file, including the conflict metadata and the hunks of the differences between the files.
destination_commit_id: StringThe commit ID of the destination commit specifier that was used in the merge evaluation.
errors: Option<Vec<CodeCommitBatchDescribeMergeConflictsError>>A list of any errors returned while describing the merge conflicts for each file.
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 BatchDescribeMergeConflictsOutput
impl Clone for BatchDescribeMergeConflictsOutput
Source§fn clone(&self) -> BatchDescribeMergeConflictsOutput
fn clone(&self) -> BatchDescribeMergeConflictsOutput
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 Default for BatchDescribeMergeConflictsOutput
impl Default for BatchDescribeMergeConflictsOutput
Source§fn default() -> BatchDescribeMergeConflictsOutput
fn default() -> BatchDescribeMergeConflictsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchDescribeMergeConflictsOutput
impl<'de> Deserialize<'de> for BatchDescribeMergeConflictsOutput
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 BatchDescribeMergeConflictsOutput
impl PartialEq for BatchDescribeMergeConflictsOutput
Source§fn eq(&self, other: &BatchDescribeMergeConflictsOutput) -> bool
fn eq(&self, other: &BatchDescribeMergeConflictsOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchDescribeMergeConflictsOutput
Auto Trait Implementations§
impl Freeze for BatchDescribeMergeConflictsOutput
impl RefUnwindSafe for BatchDescribeMergeConflictsOutput
impl Send for BatchDescribeMergeConflictsOutput
impl Sync for BatchDescribeMergeConflictsOutput
impl Unpin for BatchDescribeMergeConflictsOutput
impl UnwindSafe for BatchDescribeMergeConflictsOutput
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