Enum nydus::blob_cache::BlobCacheObjectConfig
source · pub enum BlobCacheObjectConfig {
MetaBlob(Arc<BlobCacheConfigMetaBlob>),
DataBlob(Arc<BlobCacheConfigDataBlob>),
}
Expand description
Configuration information for cached blob objects.
Variants§
MetaBlob(Arc<BlobCacheConfigMetaBlob>)
Configuration information for cached meta blob objects.
DataBlob(Arc<BlobCacheConfigDataBlob>)
Configuration information for cached data blob objects.
Implementations§
Trait Implementations§
source§impl Clone for BlobCacheObjectConfig
impl Clone for BlobCacheObjectConfig
source§fn clone(&self) -> BlobCacheObjectConfig
fn clone(&self) -> BlobCacheObjectConfig
Returns a copy 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 more