pub struct UpdatePullRequest {
pub title: Option<String>,
pub body: Option<String>,
pub base: Option<String>,
}Expand description
Request to update a pull request.
Fields§
§title: Option<String>New title (optional).
body: Option<String>New body (optional).
base: Option<String>New base branch (optional).
Trait Implementations§
Source§impl Debug for UpdatePullRequest
impl Debug for UpdatePullRequest
Auto Trait Implementations§
impl Freeze for UpdatePullRequest
impl RefUnwindSafe for UpdatePullRequest
impl Send for UpdatePullRequest
impl Sync for UpdatePullRequest
impl Unpin for UpdatePullRequest
impl UnwindSafe for UpdatePullRequest
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