pub struct DataCacheConfig {
pub disk_cache_config: Option<DiskDataCacheConfig>,
pub express_cache_config: Option<ExpressDataCacheConfig>,
}Expand description
Configuration for the data cache.
Can be configured to enable a local disk cache, a shared cache in S3 Express One Zone, or both.
Fields§
§disk_cache_config: Option<DiskDataCacheConfig>§express_cache_config: Option<ExpressDataCacheConfig>Trait Implementations§
Source§impl Debug for DataCacheConfig
impl Debug for DataCacheConfig
Source§impl Default for DataCacheConfig
impl Default for DataCacheConfig
Source§fn default() -> DataCacheConfig
fn default() -> DataCacheConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DataCacheConfig
impl RefUnwindSafe for DataCacheConfig
impl Send for DataCacheConfig
impl Sync for DataCacheConfig
impl Unpin for DataCacheConfig
impl UnwindSafe for DataCacheConfig
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