pub struct ProjectGroupMilestoneDiff {
pub code_name: Option<String>,
pub date_targeted: Option<NaiveDate>,
pub is_active: Option<bool>,
pub name: Option<String>,
pub series_target_link: Option<Url>,
pub summary: Option<String>,
pub target_link: Option<Url>,
}Expand description
Representation of the project_group_milestone-diff resource
Fields§
§code_name: Option<String>Code name
An alternative name for the milestone.
date_targeted: Option<NaiveDate>Date Targeted
Example: 2005-11-24
is_active: Option<bool>Active
Whether or not this object should be shown in web forms for targeting.
name: Option<String>Name
Only letters, numbers, and simple punctuation are allowed.
series_target_link: Option<Url>The productseries or distroseries of this milestone.
summary: Option<String>Summary
A summary of the features and status of this milestone.
target_link: Option<Url>The product, distribution, or project group for this milestone.
Implementations§
Source§impl ProjectGroupMilestoneDiff
impl ProjectGroupMilestoneDiff
Sourcepub fn series_target(&self) -> Option<HasMilestones>
pub fn series_target(&self) -> Option<HasMilestones>
The productseries or distroseries of this milestone.
pub fn set_series_target(&mut self, value: Option<HasMilestones>)
Sourcepub fn target(&self) -> Option<HasMilestones>
pub fn target(&self) -> Option<HasMilestones>
The product, distribution, or project group for this milestone.
pub fn set_target(&mut self, value: Option<HasMilestones>)
Trait Implementations§
Source§impl Clone for ProjectGroupMilestoneDiff
impl Clone for ProjectGroupMilestoneDiff
Source§fn clone(&self) -> ProjectGroupMilestoneDiff
fn clone(&self) -> ProjectGroupMilestoneDiff
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 ProjectGroupMilestoneDiff
impl Debug for ProjectGroupMilestoneDiff
Source§impl Default for ProjectGroupMilestoneDiff
impl Default for ProjectGroupMilestoneDiff
Source§impl<'de> Deserialize<'de> for ProjectGroupMilestoneDiff
impl<'de> Deserialize<'de> for ProjectGroupMilestoneDiff
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 ProjectGroupMilestoneDiff
Auto Trait Implementations§
impl Freeze for ProjectGroupMilestoneDiff
impl RefUnwindSafe for ProjectGroupMilestoneDiff
impl Send for ProjectGroupMilestoneDiff
impl Sync for ProjectGroupMilestoneDiff
impl Unpin for ProjectGroupMilestoneDiff
impl UnwindSafe for ProjectGroupMilestoneDiff
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