pub struct ProjectMilestone {Show 14 fields
pub id: String,
pub workspace_id: String,
pub project_id: String,
pub project_name: String,
pub name: String,
pub description: Option<String>,
pub target_date: Option<String>,
pub status: String,
pub progress: f64,
pub sort_order: f64,
pub created_at: String,
pub updated_at: String,
pub archived_at: Option<String>,
pub synced_at: Option<String>,
}Fields§
§id: String§workspace_id: String§project_id: String§project_name: String§name: String§description: Option<String>§target_date: Option<String>§status: String§progress: f64§sort_order: f64§created_at: String§updated_at: String§archived_at: Option<String>§synced_at: 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 (const: unstable) · 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<'de> Deserialize<'de> for ProjectMilestone
impl<'de> Deserialize<'de> for ProjectMilestone
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 From<ProjectMilestone> for RtProjectMilestone
impl From<ProjectMilestone> for RtProjectMilestone
Source§fn from(milestone: ProjectMilestone) -> Self
fn from(milestone: ProjectMilestone) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ProjectMilestone
impl PartialEq for ProjectMilestone
Source§impl Serialize for ProjectMilestone
impl Serialize for ProjectMilestone
impl StructuralPartialEq for ProjectMilestone
Auto Trait Implementations§
impl Freeze for ProjectMilestone
impl RefUnwindSafe for ProjectMilestone
impl Send for ProjectMilestone
impl Sync for ProjectMilestone
impl Unpin for ProjectMilestone
impl UnsafeUnpin 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