pub struct WorkingSetEntry {
pub path: String,
pub is_dir: bool,
pub exists: bool,
pub touches: u32,
pub last_turn: u64,
pub last_source: WorkingSetSource,
}Expand description
A single working-set entry.
Fields§
§path: StringWorkspace-relative path string.
is_dir: boolWhether the path is a directory (best-effort).
exists: boolWhether the path exists on disk (best-effort).
touches: u32Number of times this path was observed.
last_turn: u64The last observed turn index.
last_source: WorkingSetSourceThe last update source.
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