#[non_exhaustive]pub struct ExperienceEntry {
pub task_description: String,
pub files_modified: Vec<String>,
pub recorded_at: String,
}Expand description
A single experience entry linking a task description to modified files.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.task_description: StringTask description (from the agent prompt).
files_modified: Vec<String>Files modified in this edit session.
recorded_at: StringTimestamp (ISO 8601).
Auto Trait Implementations§
impl Freeze for ExperienceEntry
impl RefUnwindSafe for ExperienceEntry
impl Send for ExperienceEntry
impl Sync for ExperienceEntry
impl Unpin for ExperienceEntry
impl UnsafeUnpin for ExperienceEntry
impl UnwindSafe for ExperienceEntry
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