pub struct PatchIssuesUpdateMilestone {
pub title: Option<String>,
pub state: Option<String>,
pub description: Option<String>,
pub due_on: Option<DateTime<Utc>>,
}Fields§
§title: Option<String>The title of the milestone.
state: Option<String>The state of the milestone. Either open or closed.
description: Option<String>A description of the milestone.
due_on: Option<DateTime<Utc>>The milestone due date. This is a timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ.
Trait Implementations§
Source§impl Clone for PatchIssuesUpdateMilestone
impl Clone for PatchIssuesUpdateMilestone
Source§fn clone(&self) -> PatchIssuesUpdateMilestone
fn clone(&self) -> PatchIssuesUpdateMilestone
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 PatchIssuesUpdateMilestone
impl Debug for PatchIssuesUpdateMilestone
Source§impl Default for PatchIssuesUpdateMilestone
impl Default for PatchIssuesUpdateMilestone
Source§fn default() -> PatchIssuesUpdateMilestone
fn default() -> PatchIssuesUpdateMilestone
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchIssuesUpdateMilestone
impl<'de> Deserialize<'de> for PatchIssuesUpdateMilestone
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
impl StructuralPartialEq for PatchIssuesUpdateMilestone
Auto Trait Implementations§
impl Freeze for PatchIssuesUpdateMilestone
impl RefUnwindSafe for PatchIssuesUpdateMilestone
impl Send for PatchIssuesUpdateMilestone
impl Sync for PatchIssuesUpdateMilestone
impl Unpin for PatchIssuesUpdateMilestone
impl UnwindSafe for PatchIssuesUpdateMilestone
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