pub struct CacheConfigPart {
pub cache_enable: Option<bool>,
pub cache_encryption_key: Option<String>,
pub cache_ttl: Option<String>,
pub new_proactive_cache_enable: Option<bool>,
pub proactive_cache_dump_interval: Option<String>,
pub proactive_cache_enable: Option<bool>,
pub proactive_cache_minimum_fetching_time: Option<String>,
}Fields§
§cache_enable: Option<bool>§cache_encryption_key: Option<String>§cache_ttl: Option<String>§new_proactive_cache_enable: Option<bool>§proactive_cache_dump_interval: Option<String>§proactive_cache_enable: Option<bool>§proactive_cache_minimum_fetching_time: Option<String>Implementations§
Source§impl CacheConfigPart
impl CacheConfigPart
pub fn new() -> CacheConfigPart
Trait Implementations§
Source§impl Clone for CacheConfigPart
impl Clone for CacheConfigPart
Source§fn clone(&self) -> CacheConfigPart
fn clone(&self) -> CacheConfigPart
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 moreSource§impl Debug for CacheConfigPart
impl Debug for CacheConfigPart
Source§impl Default for CacheConfigPart
impl Default for CacheConfigPart
Source§fn default() -> CacheConfigPart
fn default() -> CacheConfigPart
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CacheConfigPart
impl<'de> Deserialize<'de> for CacheConfigPart
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
Source§impl PartialEq for CacheConfigPart
impl PartialEq for CacheConfigPart
Source§fn eq(&self, other: &CacheConfigPart) -> bool
fn eq(&self, other: &CacheConfigPart) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CacheConfigPart
impl Serialize for CacheConfigPart
impl StructuralPartialEq for CacheConfigPart
Auto Trait Implementations§
impl Freeze for CacheConfigPart
impl RefUnwindSafe for CacheConfigPart
impl Send for CacheConfigPart
impl Sync for CacheConfigPart
impl Unpin for CacheConfigPart
impl UnsafeUnpin for CacheConfigPart
impl UnwindSafe for CacheConfigPart
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