pub struct Project {
pub id: String,
pub title: String,
pub note: Option<String>,
pub start: Option<String>,
pub end: Option<String>,
pub emoji: Option<String>,
pub color: Option<String>,
pub parent: Option<String>,
pub parent_order: Option<f64>,
pub is_notebook: Option<bool>,
pub tags: Option<Vec<String>>,
pub modificated_date: Option<String>,
}Fields§
§id: String§title: String§note: Option<String>§start: Option<String>§end: Option<String>§emoji: Option<String>§color: Option<String>§parent: Option<String>§parent_order: Option<f64>§is_notebook: Option<bool>§modificated_date: Option<String>Implementations§
Source§impl Project
impl Project
pub fn display_detail(&self)
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