pub enum CacheIoOperationKind {
Write,
Read,
}Expand description
Kind of asynchronous backing-store operation.
Variants§
Write
Publish host resources to a durable backing.
Read
Reconstruct host resources from a durable backing.
Trait Implementations§
Source§impl Clone for CacheIoOperationKind
impl Clone for CacheIoOperationKind
Source§fn clone(&self) -> CacheIoOperationKind
fn clone(&self) -> CacheIoOperationKind
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 CacheIoOperationKind
Source§impl Debug for CacheIoOperationKind
impl Debug for CacheIoOperationKind
Source§impl<'de> Deserialize<'de> for CacheIoOperationKind
impl<'de> Deserialize<'de> for CacheIoOperationKind
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 CacheIoOperationKind
Source§impl Hash for CacheIoOperationKind
impl Hash for CacheIoOperationKind
Source§impl PartialEq for CacheIoOperationKind
impl PartialEq for CacheIoOperationKind
Source§impl Serialize for CacheIoOperationKind
impl Serialize for CacheIoOperationKind
impl StructuralPartialEq for CacheIoOperationKind
Auto Trait Implementations§
impl Freeze for CacheIoOperationKind
impl RefUnwindSafe for CacheIoOperationKind
impl Send for CacheIoOperationKind
impl Sync for CacheIoOperationKind
impl Unpin for CacheIoOperationKind
impl UnsafeUnpin for CacheIoOperationKind
impl UnwindSafe for CacheIoOperationKind
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