pub struct TaskStateProps {Show 23 fields
pub title: String,
pub notes: Option<String>,
pub item_type: TaskType,
pub status: TaskStatus,
pub stop_date: Option<f64>,
pub start_location: TaskStart,
pub scheduled_date: Option<f64>,
pub today_index_reference: Option<i64>,
pub deadline: Option<f64>,
pub parent_project_ids: Vec<ThingsId>,
pub area_ids: Vec<ThingsId>,
pub action_group_ids: Vec<ThingsId>,
pub tag_ids: Vec<ThingsId>,
pub sort_index: i32,
pub today_sort_index: i32,
pub recurrence_rule: Option<RecurrenceRule>,
pub recurrence_template_ids: Vec<ThingsId>,
pub instance_creation_paused: bool,
pub evening_bit: i32,
pub leaves_tombstone: bool,
pub trashed: bool,
pub creation_date: Option<f64>,
pub modification_date: Option<f64>,
}Fields§
§title: String§notes: Option<String>§item_type: TaskType§status: TaskStatus§stop_date: Option<f64>§start_location: TaskStart§scheduled_date: Option<f64>§today_index_reference: Option<i64>§deadline: Option<f64>§parent_project_ids: Vec<ThingsId>§area_ids: Vec<ThingsId>§action_group_ids: Vec<ThingsId>§tag_ids: Vec<ThingsId>§sort_index: i32§today_sort_index: i32§recurrence_rule: Option<RecurrenceRule>§recurrence_template_ids: Vec<ThingsId>§instance_creation_paused: bool§evening_bit: i32§leaves_tombstone: bool§trashed: bool§creation_date: Option<f64>§modification_date: Option<f64>Trait Implementations§
Source§impl Clone for TaskStateProps
impl Clone for TaskStateProps
Source§fn clone(&self) -> TaskStateProps
fn clone(&self) -> TaskStateProps
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TaskStateProps
impl Debug for TaskStateProps
Source§impl Default for TaskStateProps
impl Default for TaskStateProps
Source§fn default() -> TaskStateProps
fn default() -> TaskStateProps
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskStateProps
impl<'de> Deserialize<'de> for TaskStateProps
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
Source§impl From<TaskPatch> for TaskStateProps
impl From<TaskPatch> for TaskStateProps
Source§impl From<TaskProps> for TaskStateProps
impl From<TaskProps> for TaskStateProps
Source§impl PartialEq for TaskStateProps
impl PartialEq for TaskStateProps
Source§impl Serialize for TaskStateProps
impl Serialize for TaskStateProps
impl StructuralPartialEq for TaskStateProps
Auto Trait Implementations§
impl Freeze for TaskStateProps
impl RefUnwindSafe for TaskStateProps
impl Send for TaskStateProps
impl Sync for TaskStateProps
impl Unpin for TaskStateProps
impl UnsafeUnpin for TaskStateProps
impl UnwindSafe for TaskStateProps
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