pub struct GetMergeOptionsOutput {
pub base_commit_id: String,
pub destination_commit_id: String,
pub merge_options: Vec<String>,
pub source_commit_id: String,
}Fields§
§base_commit_id: StringThe commit ID of the merge base.
destination_commit_id: StringThe commit ID of the destination commit specifier that was used in the merge evaluation.
merge_options: Vec<String>The merge option or strategy used to merge the code.
source_commit_id: StringThe commit ID of the source commit specifier that was used in the merge evaluation.
Trait Implementations§
Source§impl Clone for GetMergeOptionsOutput
impl Clone for GetMergeOptionsOutput
Source§fn clone(&self) -> GetMergeOptionsOutput
fn clone(&self) -> GetMergeOptionsOutput
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 GetMergeOptionsOutput
impl Debug for GetMergeOptionsOutput
Source§impl Default for GetMergeOptionsOutput
impl Default for GetMergeOptionsOutput
Source§fn default() -> GetMergeOptionsOutput
fn default() -> GetMergeOptionsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMergeOptionsOutput
impl<'de> Deserialize<'de> for GetMergeOptionsOutput
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 GetMergeOptionsOutput
impl PartialEq for GetMergeOptionsOutput
impl StructuralPartialEq for GetMergeOptionsOutput
Auto Trait Implementations§
impl Freeze for GetMergeOptionsOutput
impl RefUnwindSafe for GetMergeOptionsOutput
impl Send for GetMergeOptionsOutput
impl Sync for GetMergeOptionsOutput
impl Unpin for GetMergeOptionsOutput
impl UnwindSafe for GetMergeOptionsOutput
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