pub struct MergeBranchesByFastForwardInput {
pub destination_commit_specifier: String,
pub repository_name: String,
pub source_commit_specifier: String,
pub target_branch: Option<String>,
}Fields§
§destination_commit_specifier: StringThe branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
repository_name: StringThe name of the repository where you want to merge two branches.
source_commit_specifier: StringThe branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
target_branch: Option<String>The branch where the merge is applied.
Trait Implementations§
Source§impl Clone for MergeBranchesByFastForwardInput
impl Clone for MergeBranchesByFastForwardInput
Source§fn clone(&self) -> MergeBranchesByFastForwardInput
fn clone(&self) -> MergeBranchesByFastForwardInput
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 MergeBranchesByFastForwardInput
impl Default for MergeBranchesByFastForwardInput
Source§fn default() -> MergeBranchesByFastForwardInput
fn default() -> MergeBranchesByFastForwardInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for MergeBranchesByFastForwardInput
impl PartialEq for MergeBranchesByFastForwardInput
Source§fn eq(&self, other: &MergeBranchesByFastForwardInput) -> bool
fn eq(&self, other: &MergeBranchesByFastForwardInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MergeBranchesByFastForwardInput
Auto Trait Implementations§
impl Freeze for MergeBranchesByFastForwardInput
impl RefUnwindSafe for MergeBranchesByFastForwardInput
impl Send for MergeBranchesByFastForwardInput
impl Sync for MergeBranchesByFastForwardInput
impl Unpin for MergeBranchesByFastForwardInput
impl UnwindSafe for MergeBranchesByFastForwardInput
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