pub struct BlobCacheEntry {
    pub blob_type: String,
    pub blob_id: String,
    pub blob_config: BlobCacheEntryConfig,
    pub domain_id: String,
    pub fs_prefetch: Option<BlobPrefetchConfig>,
}
Expand description

Configuration information for a cached blob.

Fields

blob_type: String

Type of blob object, bootstrap or data blob.

blob_id: String

Blob id.

blob_config: BlobCacheEntryConfig

Configuration information to generate blob cache object.

domain_id: String

Domain id for the blob, which is used to group cached blobs into management domains.

fs_prefetch: Option<BlobPrefetchConfig>

Deprecated: data prefetch configuration: BlobPrefetchConfig.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.