pub struct BuildCacheUsage {
pub total_count: usize,
pub active: usize,
pub size: i64,
pub reclaimable_size: i64,
}
Expand description
Build cache disk usage information
Fields§
§total_count: usize
Total number of build cache entries
active: usize
Number of active build cache entries
size: i64
Total size in bytes
reclaimable_size: i64
Reclaimable size in bytes
Trait Implementations§
Source§impl Clone for BuildCacheUsage
impl Clone for BuildCacheUsage
Source§fn clone(&self) -> BuildCacheUsage
fn clone(&self) -> BuildCacheUsage
Returns a duplicate of the value. Read more
1.0.0 · 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 BuildCacheUsage
impl Debug for BuildCacheUsage
Source§impl<'de> Deserialize<'de> for BuildCacheUsage
impl<'de> Deserialize<'de> for BuildCacheUsage
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 BuildCacheUsage
impl RefUnwindSafe for BuildCacheUsage
impl Send for BuildCacheUsage
impl Sync for BuildCacheUsage
impl Unpin for BuildCacheUsage
impl UnwindSafe for BuildCacheUsage
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