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>,
}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.
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 · 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