pub struct Project {
pub collapse_completed: bool,
pub completed: bool,
pub completed_at: Option<String>,
pub date: Option<String>,
pub end_date: Option<String>,
pub id: String,
pub link: Option<String>,
pub name: String,
pub note_body: Option<String>,
pub order: Option<i64>,
pub spring_enabled: bool,
pub supports_notes: bool,
}Fields§
§collapse_completed: bool§completed: bool§completed_at: Option<String>§date: Option<String>§end_date: Option<String>§id: String§link: Option<String>§name: String§note_body: Option<String>§order: Option<i64>§spring_enabled: bool§supports_notes: boolTrait 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