pub struct NextStepReport {
pub query: String,
pub folders: Vec<RankedNode>,
pub files: Vec<RankedNode>,
pub suggestions: Vec<String>,
}Expand description
Agent-facing next-step recommendation report built from indexed metadata.
Fields§
§query: StringTask/navigation query.
folders: Vec<RankedNode>Top matching folders with concise ranking evidence.
files: Vec<RankedNode>Top matching files with concise ranking evidence.
suggestions: Vec<String>Deterministic follow-up commands for the selected index targets.
Trait Implementations§
Source§impl Debug for NextStepReport
impl Debug for NextStepReport
Auto Trait Implementations§
impl Freeze for NextStepReport
impl RefUnwindSafe for NextStepReport
impl Send for NextStepReport
impl Sync for NextStepReport
impl Unpin for NextStepReport
impl UnwindSafe for NextStepReport
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