pub struct Project {Show 26 fields
pub id: String,
pub workspace_id: String,
pub slug_id: String,
pub name: String,
pub description: String,
pub content: Option<String>,
pub icon: Option<String>,
pub color: String,
pub status_id: String,
pub status_name: String,
pub status_type: String,
pub status_color: String,
pub priority: i32,
pub start_date: Option<String>,
pub target_date: Option<String>,
pub lead_id: Option<String>,
pub lead_name: Option<String>,
pub created_at: String,
pub updated_at: String,
pub archived_at: Option<String>,
pub url: String,
pub progress: f64,
pub synced_at: Option<String>,
pub teams: Vec<ProjectTeam>,
pub members: Vec<ProjectMember>,
pub labels: Vec<ProjectLabel>,
}Fields§
§id: String§workspace_id: String§slug_id: String§name: String§description: String§content: Option<String>§icon: Option<String>§color: String§status_id: String§status_name: String§status_type: String§status_color: String§priority: i32§start_date: Option<String>§target_date: Option<String>§lead_id: Option<String>§lead_name: Option<String>§created_at: String§updated_at: String§archived_at: Option<String>§url: String§progress: f64§synced_at: Option<String>§teams: Vec<ProjectTeam>§members: Vec<ProjectMember>§labels: Vec<ProjectLabel>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
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 Project
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnsafeUnpin for Project
impl UnwindSafe for Project
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