pub struct ProjectMilestone {Show 13 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub name: Option<String>,
pub target_date: Option<NaiveDate>,
pub progress_history: Option<Value>,
pub current_progress: Option<Value>,
pub sort_order: Option<f64>,
pub description: Option<String>,
pub status: Option<ProjectMilestoneStatus>,
pub progress: Option<f64>,
pub description_state: Option<String>,
}Fields§
§id: Option<String>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>§archived_at: Option<DateTime<Utc>>§name: Option<String>§target_date: Option<NaiveDate>§progress_history: Option<Value>§current_progress: Option<Value>§sort_order: Option<f64>§description: Option<String>§status: Option<ProjectMilestoneStatus>§progress: Option<f64>§description_state: Option<String>Trait Implementations§
Source§impl Clone for ProjectMilestone
impl Clone for ProjectMilestone
Source§fn clone(&self) -> ProjectMilestone
fn clone(&self) -> ProjectMilestone
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 ProjectMilestone
impl Debug for ProjectMilestone
Source§impl Default for ProjectMilestone
impl Default for ProjectMilestone
Source§fn default() -> ProjectMilestone
fn default() -> ProjectMilestone
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectMilestonewhere
ProjectMilestone: Default,
impl<'de> Deserialize<'de> for ProjectMilestonewhere
ProjectMilestone: Default,
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
Auto Trait Implementations§
impl Freeze for ProjectMilestone
impl RefUnwindSafe for ProjectMilestone
impl Send for ProjectMilestone
impl Sync for ProjectMilestone
impl Unpin for ProjectMilestone
impl UnwindSafe for ProjectMilestone
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