pub struct Plan {
pub goal: String,
pub action_queue: Vec<PlannedTask>,
pub hold_queue: Vec<PlannedTask>,
pub overall_trit: i8,
}Fields§
§goal: String§action_queue: Vec<PlannedTask>Steps the agent proceeds on directly.
hold_queue: Vec<PlannedTask>Steps that need human input, authority, or teaching before they can proceed — not a dead end: the explicit list of what to explain or hand back.
overall_trit: i8Trait Implementations§
Source§impl<'de> Deserialize<'de> for Plan
impl<'de> Deserialize<'de> for Plan
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 Plan
impl RefUnwindSafe for Plan
impl Send for Plan
impl Sync for Plan
impl Unpin for Plan
impl UnsafeUnpin for Plan
impl UnwindSafe for Plan
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