pub enum IssuesUpdateRequestMilestone {
String(String),
Integer(i32),
}
Variants§
String(String)
Integer(i32)
The number
of the milestone to associate this issue with or use null
to remove the current milestone. Only users with push access can set the milestone for issues. Without push access to the repository, milestone changes are silently dropped.
Trait Implementations§
Source§impl Clone for IssuesUpdateRequestMilestone
impl Clone for IssuesUpdateRequestMilestone
Source§fn clone(&self) -> IssuesUpdateRequestMilestone
fn clone(&self) -> IssuesUpdateRequestMilestone
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 Debug for IssuesUpdateRequestMilestone
impl Debug for IssuesUpdateRequestMilestone
Source§impl<'de> Deserialize<'de> for IssuesUpdateRequestMilestone
impl<'de> Deserialize<'de> for IssuesUpdateRequestMilestone
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for IssuesUpdateRequestMilestone
impl PartialEq for IssuesUpdateRequestMilestone
Source§fn eq(&self, other: &IssuesUpdateRequestMilestone) -> bool
fn eq(&self, other: &IssuesUpdateRequestMilestone) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IssuesUpdateRequestMilestone
Auto Trait Implementations§
impl Freeze for IssuesUpdateRequestMilestone
impl RefUnwindSafe for IssuesUpdateRequestMilestone
impl Send for IssuesUpdateRequestMilestone
impl Sync for IssuesUpdateRequestMilestone
impl Unpin for IssuesUpdateRequestMilestone
impl UnwindSafe for IssuesUpdateRequestMilestone
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