#[non_exhaustive]pub struct DataCacheConfig {
pub data_cache_enabled: bool,
/* private fields */
}
Expand description
Data cache configurations.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data_cache_enabled: bool
Whether data cache is enabled for the instance.
Implementations§
Source§impl DataCacheConfig
impl DataCacheConfig
pub fn new() -> Self
Sourcepub fn set_data_cache_enabled<T: Into<bool>>(self, v: T) -> Self
pub fn set_data_cache_enabled<T: Into<bool>>(self, v: T) -> Self
Sets the value of data_cache_enabled.
Trait Implementations§
Source§impl Clone for DataCacheConfig
impl Clone for DataCacheConfig
Source§fn clone(&self) -> DataCacheConfig
fn clone(&self) -> DataCacheConfig
Returns a duplicate 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 moreSource§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
Source§impl Message for DataCacheConfig
impl Message for DataCacheConfig
Source§impl PartialEq for DataCacheConfig
impl PartialEq for DataCacheConfig
impl StructuralPartialEq for DataCacheConfig
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