pub struct MergeBranchesByFastForwardOutput {
pub commit_id: Option<String>,
pub tree_id: Option<String>,
}Fields§
§commit_id: Option<String>The commit ID of the merge in the destination or target branch.
tree_id: Option<String>The tree ID of the merge in the destination or target branch.
Trait Implementations§
Source§impl Clone for MergeBranchesByFastForwardOutput
impl Clone for MergeBranchesByFastForwardOutput
Source§fn clone(&self) -> MergeBranchesByFastForwardOutput
fn clone(&self) -> MergeBranchesByFastForwardOutput
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 MergeBranchesByFastForwardOutput
impl Default for MergeBranchesByFastForwardOutput
Source§fn default() -> MergeBranchesByFastForwardOutput
fn default() -> MergeBranchesByFastForwardOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MergeBranchesByFastForwardOutput
impl<'de> Deserialize<'de> for MergeBranchesByFastForwardOutput
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 MergeBranchesByFastForwardOutput
impl PartialEq for MergeBranchesByFastForwardOutput
Source§fn eq(&self, other: &MergeBranchesByFastForwardOutput) -> bool
fn eq(&self, other: &MergeBranchesByFastForwardOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MergeBranchesByFastForwardOutput
Auto Trait Implementations§
impl Freeze for MergeBranchesByFastForwardOutput
impl RefUnwindSafe for MergeBranchesByFastForwardOutput
impl Send for MergeBranchesByFastForwardOutput
impl Sync for MergeBranchesByFastForwardOutput
impl Unpin for MergeBranchesByFastForwardOutput
impl UnwindSafe for MergeBranchesByFastForwardOutput
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