pub struct Task {Show 13 fields
pub gid: String,
pub name: String,
pub notes: Option<String>,
pub completed: bool,
pub completed_at: Option<String>,
pub due_on: Option<String>,
pub due_at: Option<String>,
pub assignee: Option<User>,
pub projects: Option<Vec<Project>>,
pub tags: Option<Vec<Tag>>,
pub created_at: String,
pub modified_at: String,
pub permalink_url: Option<String>,
}Expand description
Task.
Fields§
§gid: String§name: String§notes: Option<String>§completed: bool§completed_at: Option<String>§due_on: Option<String>§due_at: Option<String>§assignee: Option<User>§projects: Option<Vec<Project>>§created_at: String§modified_at: String§permalink_url: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Task
impl<'de> Deserialize<'de> for Task
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 Task
impl RefUnwindSafe for Task
impl Send for Task
impl Sync for Task
impl Unpin for Task
impl UnsafeUnpin for Task
impl UnwindSafe for Task
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