pub struct ShimcacheEntry {
pub path: String,
pub last_modified: Option<String>,
pub raw_size: usize,
pub entry_index: usize,
}Expand description
A single entry decoded from the AppCompatCache (ShimCache) binary blob.
Fields§
§path: StringExecutable path extracted from the cache entry. Empty if unparseable.
last_modified: Option<String>Last modified time as ISO 8601, or None if unavailable.
raw_size: usizeSize of the raw AppCompatCache REG_BINARY blob.
entry_index: usizePosition in the cache (0 = most recently executed).
Trait Implementations§
Source§impl Clone for ShimcacheEntry
impl Clone for ShimcacheEntry
Source§fn clone(&self) -> ShimcacheEntry
fn clone(&self) -> ShimcacheEntry
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 ShimcacheEntry
impl Debug for ShimcacheEntry
Auto Trait Implementations§
impl Freeze for ShimcacheEntry
impl RefUnwindSafe for ShimcacheEntry
impl Send for ShimcacheEntry
impl Sync for ShimcacheEntry
impl Unpin for ShimcacheEntry
impl UnsafeUnpin for ShimcacheEntry
impl UnwindSafe for ShimcacheEntry
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