pub struct AgentStats {
pub lookups: u64,
pub hits: u64,
pub stores: u64,
pub stored_bytes: u64,
pub verifications: u64,
pub divergences: u64,
pub downloaded_bytes: u64,
pub uploaded_bytes: u64,
pub prefetched_actions: u64,
}Expand description
Aggregate cache activity for one task session.
Fields§
§lookups: u64Number of action-result lookups.
hits: u64Number of lookups that found a valid local action result.
stores: u64Number of newly stored content-addressed objects.
stored_bytes: u64Total size of newly stored objects.
verifications: u64Number of cache hits compiled again for qualification.
divergences: u64Number of qualification builds that diverged from the cached result.
downloaded_bytes: u64CAS payload bytes downloaded from the remote cache.
uploaded_bytes: u64CAS payload bytes uploaded to the remote cache.
prefetched_actions: u64Complete actions staged before an adapter requested them.
Trait Implementations§
Source§impl Clone for AgentStats
impl Clone for AgentStats
Source§fn clone(&self) -> AgentStats
fn clone(&self) -> AgentStats
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 moreimpl Copy for AgentStats
Source§impl Debug for AgentStats
impl Debug for AgentStats
Source§impl Default for AgentStats
impl Default for AgentStats
Source§fn default() -> AgentStats
fn default() -> AgentStats
Returns the “default value” for a type. Read more
impl Eq for AgentStats
Source§impl PartialEq for AgentStats
impl PartialEq for AgentStats
impl StructuralPartialEq for AgentStats
Auto Trait Implementations§
impl Freeze for AgentStats
impl RefUnwindSafe for AgentStats
impl Send for AgentStats
impl Sync for AgentStats
impl Unpin for AgentStats
impl UnsafeUnpin for AgentStats
impl UnwindSafe for AgentStats
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