pub struct PlannedNode {
pub slug: String,
pub title: String,
pub priority: u8,
pub goal: String,
pub context: String,
pub acceptance_hints: Vec<String>,
pub blocked_by: Vec<String>,
}Expand description
One node of the planner’s proposed decomposition — the JSON shape the
planner prompt contracts for: {"slug","title","priority","goal","context", "acceptanceHints":["..."],"blockedBy":["slug"]}.
Fields§
§slug: String§title: String§priority: u8§goal: String§context: String§acceptance_hints: Vec<String>§blocked_by: Vec<String>Trait Implementations§
Source§impl Clone for PlannedNode
impl Clone for PlannedNode
Source§fn clone(&self) -> PlannedNode
fn clone(&self) -> PlannedNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlannedNode
impl Debug for PlannedNode
Source§impl<'de> Deserialize<'de> for PlannedNode
impl<'de> Deserialize<'de> for PlannedNode
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 PlannedNode
impl PartialEq for PlannedNode
Source§impl Serialize for PlannedNode
impl Serialize for PlannedNode
impl StructuralPartialEq for PlannedNode
Auto Trait Implementations§
impl Freeze for PlannedNode
impl RefUnwindSafe for PlannedNode
impl Send for PlannedNode
impl Sync for PlannedNode
impl Unpin for PlannedNode
impl UnsafeUnpin for PlannedNode
impl UnwindSafe for PlannedNode
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