pub struct PlanEntry {
pub content: String,
pub priority: PlanPriority,
pub status: PlanStatus,
}Expand description
Plan entry for task planning
Fields§
§content: StringThe content of the plan entry
priority: PlanPriorityThe priority of the plan entry
status: PlanStatusThe status of the plan entry
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PlanEntry
impl<'de> Deserialize<'de> for PlanEntry
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 PlanEntry
impl RefUnwindSafe for PlanEntry
impl Send for PlanEntry
impl Sync for PlanEntry
impl Unpin for PlanEntry
impl UnwindSafe for PlanEntry
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