pub struct GetMergeConflictsOutput {
pub base_commit_id: Option<String>,
pub conflict_metadata_list: Vec<ConflictMetadata>,
pub destination_commit_id: String,
pub mergeable: bool,
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_list: Vec<ConflictMetadata>A list of metadata for any conflicting files. If the specified merge strategy is FAST_FORWARD_MERGE, this list is always empty.
destination_commit_id: StringThe commit ID of the destination commit specifier that was used in the merge evaluation.
mergeable: boolA Boolean value that indicates whether the code is mergeable by the specified merge option.
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 GetMergeConflictsOutput
impl Clone for GetMergeConflictsOutput
Source§fn clone(&self) -> GetMergeConflictsOutput
fn clone(&self) -> GetMergeConflictsOutput
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 GetMergeConflictsOutput
impl Debug for GetMergeConflictsOutput
Source§impl Default for GetMergeConflictsOutput
impl Default for GetMergeConflictsOutput
Source§fn default() -> GetMergeConflictsOutput
fn default() -> GetMergeConflictsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMergeConflictsOutput
impl<'de> Deserialize<'de> for GetMergeConflictsOutput
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 GetMergeConflictsOutput
impl PartialEq for GetMergeConflictsOutput
impl StructuralPartialEq for GetMergeConflictsOutput
Auto Trait Implementations§
impl Freeze for GetMergeConflictsOutput
impl RefUnwindSafe for GetMergeConflictsOutput
impl Send for GetMergeConflictsOutput
impl Sync for GetMergeConflictsOutput
impl Unpin for GetMergeConflictsOutput
impl UnwindSafe for GetMergeConflictsOutput
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