pub struct CachePoolUsage {
pub device_bytes: u64,
pub host_bytes: u64,
pub transfer_in_flight_bytes: u64,
pub disk_bytes: u64,
}Expand description
Occupancy on each independently admitted cache resource axis.
Fields§
§device_bytes: u64Concrete execution-device allocations.
host_bytes: u64Concrete physical host allocations.
transfer_in_flight_bytes: u64Resources retained by submitted transfers.
disk_bytes: u64Live-cache files plus pending file reservations.
Trait Implementations§
Source§impl Clone for CachePoolUsage
impl Clone for CachePoolUsage
Source§fn clone(&self) -> CachePoolUsage
fn clone(&self) -> CachePoolUsage
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 CachePoolUsage
Source§impl Debug for CachePoolUsage
impl Debug for CachePoolUsage
Source§impl Default for CachePoolUsage
impl Default for CachePoolUsage
Source§fn default() -> CachePoolUsage
fn default() -> CachePoolUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CachePoolUsage
impl<'de> Deserialize<'de> for CachePoolUsage
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
impl Eq for CachePoolUsage
Source§impl PartialEq for CachePoolUsage
impl PartialEq for CachePoolUsage
Source§impl Serialize for CachePoolUsage
impl Serialize for CachePoolUsage
impl StructuralPartialEq for CachePoolUsage
Auto Trait Implementations§
impl Freeze for CachePoolUsage
impl RefUnwindSafe for CachePoolUsage
impl Send for CachePoolUsage
impl Sync for CachePoolUsage
impl Unpin for CachePoolUsage
impl UnsafeUnpin for CachePoolUsage
impl UnwindSafe for CachePoolUsage
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