pub struct WorkingSetEntry {
pub path: PathBuf,
pub tokens: usize,
pub access_count: u32,
pub last_access_turn: u32,
pub added_at_turn: u32,
pub pinned: bool,
pub label: Option<String>,
pub intended_hash: Option<[u8; 32]>,
}Expand description
A file entry in the working set
Fields§
§path: PathBufFile path.
tokens: usizeEstimated token count for this file.
access_count: u32Number of times this file has been accessed.
last_access_turn: u32Turn number when this file was last accessed.
added_at_turn: u32Turn number when this file was added.
pinned: boolWhether this file is pinned (immune to eviction).
label: Option<String>Optional label for categorizing the entry.
intended_hash: Option<[u8; 32]>SHA-256 of the most recent content this agent intended to write to
path, set by write_file after its read-back check succeeds.
Used by the validation loop to detect post-validation clobber: if the
file on disk no longer hashes to intended_hash at finalization time,
another writer has overwritten our content and the agent must NOT
report Success: true.
None for files that were only read, or for entries added before any
write occurred.
Implementations§
Trait Implementations§
Source§impl Clone for WorkingSetEntry
impl Clone for WorkingSetEntry
Source§fn clone(&self) -> WorkingSetEntry
fn clone(&self) -> WorkingSetEntry
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 WorkingSetEntry
impl Debug for WorkingSetEntry
Source§impl<'de> Deserialize<'de> for WorkingSetEntry
impl<'de> Deserialize<'de> for WorkingSetEntry
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 WorkingSetEntry
impl RefUnwindSafe for WorkingSetEntry
impl Send for WorkingSetEntry
impl Sync for WorkingSetEntry
impl Unpin for WorkingSetEntry
impl UnsafeUnpin for WorkingSetEntry
impl UnwindSafe for WorkingSetEntry
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