pub struct EntrySummary {
pub kind: String,
pub subjects: Vec<String>,
pub bytes: u64,
pub age_secs: u64,
}Expand description
One entry, as htl cache status describes it.
Fields§
§kind: Stringcheck, gen, run — or unreadable for a file this build cannot parse, which is
worth showing rather than hiding, since it is also a permanent miss.
subjects: Vec<String>The files it is about. One, except for a whole-run entry.
bytes: u64Size of the entry’s file on disk, which is what htl cache status totals.
age_secs: u64Seconds since the entry was last written or replayed. The sweep drops the oldest.
Trait Implementations§
Source§impl Debug for EntrySummary
impl Debug for EntrySummary
Auto Trait Implementations§
impl Freeze for EntrySummary
impl RefUnwindSafe for EntrySummary
impl Send for EntrySummary
impl Sync for EntrySummary
impl Unpin for EntrySummary
impl UnsafeUnpin for EntrySummary
impl UnwindSafe for EntrySummary
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more