pub struct CacheRefreshLockStatusRow {Show 14 fields
pub component: String,
pub refresh_lock_path: String,
pub relative_path: String,
pub status: CacheRefreshLockStatus,
pub schema_version: Option<u32>,
pub network: Option<String>,
pub pid: Option<u32>,
pub started_at_unix_ms: Option<u64>,
pub started_at: Option<String>,
pub age_seconds: Option<u64>,
pub stale_after_seconds: Option<u64>,
pub target_path: Option<String>,
pub size_bytes: u64,
pub error: Option<String>,
}Expand description
CacheRefreshLockStatusRow
Local identity, ownership, age, and stale policy for one refresh lock.
Fields§
§component: StringStable component label inferred from the recorded cache target.
refresh_lock_path: StringAbsolute refresh-lock path.
relative_path: StringCache-root-relative refresh-lock path.
status: CacheRefreshLockStatusGeneric lock age or validity classification.
schema_version: Option<u32>Serialized refresh-lock schema version when readable.
network: Option<String>Serialized network identity when readable.
pid: Option<u32>Operating-system process id recorded by the lock owner when readable.
started_at_unix_ms: Option<u64>Raw Unix-millisecond acquisition time when readable.
started_at: Option<String>UTC acquisition timestamp when readable.
age_seconds: Option<u64>Caller-relative lock age when the timestamp is not in the future.
stale_after_seconds: Option<u64>Stale threshold recorded by the lock owner.
target_path: Option<String>Cache target recorded by the lock owner when readable.
size_bytes: u64Filesystem size of this refresh-lock file.
error: Option<String>Lock parse, shape, or timestamp error.
Trait Implementations§
Source§impl Clone for CacheRefreshLockStatusRow
impl Clone for CacheRefreshLockStatusRow
Source§fn clone(&self) -> CacheRefreshLockStatusRow
fn clone(&self) -> CacheRefreshLockStatusRow
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more