pub struct PlannerTask {Show 24 fields
pub created_by: IdentitySet,
pub plan_id: String,
pub bucket_id: String,
pub title: String,
pub order_hint: String,
pub assignee_priority: String,
pub percent_complete: i32,
pub start_date_time: String,
pub created_date_time: String,
pub due_date_time: String,
pub has_description: bool,
pub preview_type: PlannerPreviewType,
pub completed_date_time: String,
pub completed_by: IdentitySet,
pub reference_count: i32,
pub checklist_item_count: i32,
pub active_checklist_item_count: i32,
pub applied_categories: PlannerAppliedCategories,
pub assignments: PlannerAssignments,
pub conversation_thread_id: String,
pub details: PlannerTaskDetails,
pub assigned_to_task_board_format: PlannerAssignedToTaskBoardTaskFormat,
pub progress_task_board_format: PlannerProgressTaskBoardTaskFormat,
pub bucket_task_board_format: PlannerBucketTaskBoardTaskFormat,
}
Fields§
§created_by: IdentitySet
§plan_id: String
§bucket_id: String
§title: String
§order_hint: String
§assignee_priority: String
§percent_complete: i32
§start_date_time: String
§created_date_time: String
§due_date_time: String
§has_description: bool
§preview_type: PlannerPreviewType
§completed_date_time: String
§completed_by: IdentitySet
§reference_count: i32
§checklist_item_count: i32
§active_checklist_item_count: i32
§applied_categories: PlannerAppliedCategories
§assignments: PlannerAssignments
§conversation_thread_id: String
§details: PlannerTaskDetails
§assigned_to_task_board_format: PlannerAssignedToTaskBoardTaskFormat
§progress_task_board_format: PlannerProgressTaskBoardTaskFormat
§bucket_task_board_format: PlannerBucketTaskBoardTaskFormat
Trait Implementations§
Source§impl Clone for PlannerTask
impl Clone for PlannerTask
Source§fn clone(&self) -> PlannerTask
fn clone(&self) -> PlannerTask
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 PlannerTask
impl Debug for PlannerTask
Source§impl<'de> Deserialize<'de> for PlannerTask
impl<'de> Deserialize<'de> for PlannerTask
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 PartialEq for PlannerTask
impl PartialEq for PlannerTask
Source§impl Serialize for PlannerTask
impl Serialize for PlannerTask
impl Eq for PlannerTask
impl StructuralPartialEq for PlannerTask
Auto Trait Implementations§
impl Freeze for PlannerTask
impl RefUnwindSafe for PlannerTask
impl Send for PlannerTask
impl Sync for PlannerTask
impl Unpin for PlannerTask
impl UnwindSafe for PlannerTask
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