pub struct PlanEntry {
pub content: String,
pub status: PlanEntryStatus,
pub priority: Option<PlanEntryPriority>,
}Expand description
One entry in a RunEvent::Plan — a single task the agent is tracking.
Wire-out only (Serialize), like the rest of RunEvent.
Fields§
§content: StringThe step text (the todo content).
status: PlanEntryStatus§priority: Option<PlanEntryPriority>Relative importance when the harness ranks steps; omitted otherwise.
Trait Implementations§
impl Eq for PlanEntry
impl StructuralPartialEq for PlanEntry
Auto Trait Implementations§
impl Freeze for PlanEntry
impl RefUnwindSafe for PlanEntry
impl Send for PlanEntry
impl Sync for PlanEntry
impl Unpin for PlanEntry
impl UnsafeUnpin 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