pub struct MergePullRequestByFastForwardInput {
pub pull_request_id: String,
pub repository_name: String,
pub source_commit_id: Option<String>,
}Fields§
§pull_request_id: StringThe system-generated ID of the pull request. To get this ID, use ListPullRequests.
repository_name: StringThe name of the repository where the pull request was created.
source_commit_id: Option<String>The full commit ID of the original or updated commit in the pull request source branch. Pass this value if you want an exception thrown if the current commit ID of the tip of the source branch does not match this commit ID.
Trait Implementations§
Source§impl Clone for MergePullRequestByFastForwardInput
impl Clone for MergePullRequestByFastForwardInput
Source§fn clone(&self) -> MergePullRequestByFastForwardInput
fn clone(&self) -> MergePullRequestByFastForwardInput
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 MergePullRequestByFastForwardInput
impl Default for MergePullRequestByFastForwardInput
Source§fn default() -> MergePullRequestByFastForwardInput
fn default() -> MergePullRequestByFastForwardInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for MergePullRequestByFastForwardInput
impl PartialEq for MergePullRequestByFastForwardInput
Source§fn eq(&self, other: &MergePullRequestByFastForwardInput) -> bool
fn eq(&self, other: &MergePullRequestByFastForwardInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MergePullRequestByFastForwardInput
Auto Trait Implementations§
impl Freeze for MergePullRequestByFastForwardInput
impl RefUnwindSafe for MergePullRequestByFastForwardInput
impl Send for MergePullRequestByFastForwardInput
impl Sync for MergePullRequestByFastForwardInput
impl Unpin for MergePullRequestByFastForwardInput
impl UnwindSafe for MergePullRequestByFastForwardInput
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