pub struct SetPullRequestMilestoneRequest {
pub milestone: Option<u64>,
}Expand description
Request to set milestone on a pull request.
Fields§
§milestone: Option<u64>Milestone number (None to clear milestone)
Trait Implementations§
Source§impl Clone for SetPullRequestMilestoneRequest
impl Clone for SetPullRequestMilestoneRequest
Source§fn clone(&self) -> SetPullRequestMilestoneRequest
fn clone(&self) -> SetPullRequestMilestoneRequest
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 moreAuto Trait Implementations§
impl Freeze for SetPullRequestMilestoneRequest
impl RefUnwindSafe for SetPullRequestMilestoneRequest
impl Send for SetPullRequestMilestoneRequest
impl Sync for SetPullRequestMilestoneRequest
impl Unpin for SetPullRequestMilestoneRequest
impl UnsafeUnpin for SetPullRequestMilestoneRequest
impl UnwindSafe for SetPullRequestMilestoneRequest
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