pub struct MergePullRequest {
pub commit_title: Option<String>,
pub commit_message: Option<String>,
pub merge_method: MergeMethod,
}Expand description
Request to merge a pull request.
Fields§
§commit_title: Option<String>Commit title (for squash/merge).
commit_message: Option<String>Commit message (for squash/merge).
merge_method: MergeMethodMerge method.
Trait Implementations§
Source§impl Debug for MergePullRequest
impl Debug for MergePullRequest
Auto Trait Implementations§
impl Freeze for MergePullRequest
impl RefUnwindSafe for MergePullRequest
impl Send for MergePullRequest
impl Sync for MergePullRequest
impl Unpin for MergePullRequest
impl UnwindSafe for MergePullRequest
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