pub struct Project {Show 15 fields
pub id: i64,
pub workspace_id: Option<i64>,
pub client_id: Option<i64>,
pub name: String,
pub is_private: Option<bool>,
pub active: Option<bool>,
pub at: Option<DateTime<Utc>>,
pub created_at: Option<DateTime<Utc>>,
pub color: Option<String>,
pub billable: Option<bool>,
pub template: Option<bool>,
pub auto_estimates: Option<bool>,
pub estimated_hours: Option<i64>,
pub rate: Option<f64>,
pub currency: Option<String>,
}Fields§
§id: i64§workspace_id: Option<i64>§client_id: Option<i64>§name: String§is_private: Option<bool>§active: Option<bool>§at: Option<DateTime<Utc>>§created_at: Option<DateTime<Utc>>§color: Option<String>§billable: Option<bool>§template: Option<bool>§auto_estimates: Option<bool>§estimated_hours: Option<i64>§rate: Option<f64>§currency: Option<String>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
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