pub enum CachePoolResource {
Device,
Host,
TransferInFlight,
Disk,
}Expand description
Resource axis named by an aggregate admission failure.
Variants§
Device
Execution-device cache allocations.
Host
Physical host cache allocations.
TransferInFlight
Resources retained until exact transfer completion.
Disk
Live-cache disk files and pending writes.
Trait Implementations§
Source§impl Clone for CachePoolResource
impl Clone for CachePoolResource
Source§fn clone(&self) -> CachePoolResource
fn clone(&self) -> CachePoolResource
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 CachePoolResource
Source§impl Debug for CachePoolResource
impl Debug for CachePoolResource
Source§impl<'de> Deserialize<'de> for CachePoolResource
impl<'de> Deserialize<'de> for CachePoolResource
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 CachePoolResource
Source§impl PartialEq for CachePoolResource
impl PartialEq for CachePoolResource
Source§impl Serialize for CachePoolResource
impl Serialize for CachePoolResource
impl StructuralPartialEq for CachePoolResource
Auto Trait Implementations§
impl Freeze for CachePoolResource
impl RefUnwindSafe for CachePoolResource
impl Send for CachePoolResource
impl Sync for CachePoolResource
impl Unpin for CachePoolResource
impl UnsafeUnpin for CachePoolResource
impl UnwindSafe for CachePoolResource
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