pub struct Project {
pub id: String,
pub name: String,
pub comment_count: i32,
pub order: i32,
pub color: String,
pub is_shared: bool,
pub is_favorite: bool,
pub is_inbox_project: bool,
pub is_team_inbox: bool,
pub view_style: String,
pub url: String,
pub parent_id: Option<String>,
}
Expand description
Todoist Project model
Fields§
§id: String
§name: String
§comment_count: i32
§order: i32
§color: String
§is_favorite: bool
§is_inbox_project: bool
§is_team_inbox: bool
§view_style: String
§url: String
§parent_id: 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 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