pub struct EditPullRequestBuilder { /* private fields */ }
Implementations§
Source§impl EditPullRequestBuilder
impl EditPullRequestBuilder
pub fn allow_maintainer_edit( self, allow_maintainer_edit: impl Into<bool>, ) -> Self
pub fn assignees(self, assignees: impl Into<Vec<String>>) -> Self
pub fn base(self, base: impl Into<String>) -> Self
pub fn body(self, body: impl Into<String>) -> Self
pub fn due_date(self, due_date: impl Into<String>) -> Self
pub fn labels(self, labels: impl Into<Vec<i64>>) -> Self
pub fn milestone(self, milestone: impl Into<i64>) -> Self
pub fn state(self, state: impl Into<StateType>) -> Self
pub fn title(self, title: impl Into<String>) -> Self
pub fn unset_due_date(self, unset_due_date: impl Into<bool>) -> Self
Trait Implementations§
Source§impl Clone for EditPullRequestBuilder
impl Clone for EditPullRequestBuilder
Source§fn clone(&self) -> EditPullRequestBuilder
fn clone(&self) -> EditPullRequestBuilder
Returns a copy 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 Debug for EditPullRequestBuilder
impl Debug for EditPullRequestBuilder
Auto Trait Implementations§
impl Freeze for EditPullRequestBuilder
impl RefUnwindSafe for EditPullRequestBuilder
impl Send for EditPullRequestBuilder
impl Sync for EditPullRequestBuilder
impl Unpin for EditPullRequestBuilder
impl UnwindSafe for EditPullRequestBuilder
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