pub struct CacheManagerOptions {
pub stores: Option<Vec<StoreConfig>>,
pub namespace: Option<String>,
pub ttl: Option<u64>,
pub refreshThreshold: Option<u64>,
pub nonBlocking: Option<bool>,
}Fields§
§stores: Option<Vec<StoreConfig>>§namespace: Option<String>§ttl: Option<u64>§refreshThreshold: Option<u64>§nonBlocking: Option<bool>Implementations§
Source§impl CacheManagerOptions
impl CacheManagerOptions
pub fn ttl_duration(&self) -> Option<Duration>
pub fn refresh_threshold_duration(&self) -> Option<Duration>
pub fn non_blocking(&self) -> bool
Trait Implementations§
Source§impl Clone for CacheManagerOptions
impl Clone for CacheManagerOptions
Source§fn clone(&self) -> CacheManagerOptions
fn clone(&self) -> CacheManagerOptions
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 CacheManagerOptions
impl Debug for CacheManagerOptions
Source§impl Default for CacheManagerOptions
impl Default for CacheManagerOptions
Source§impl<'de> Deserialize<'de> for CacheManagerOptions
impl<'de> Deserialize<'de> for CacheManagerOptions
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 CacheManagerOptions
impl PartialEq for CacheManagerOptions
Source§fn eq(&self, other: &CacheManagerOptions) -> bool
fn eq(&self, other: &CacheManagerOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CacheManagerOptions
impl Serialize for CacheManagerOptions
impl Eq for CacheManagerOptions
impl StructuralPartialEq for CacheManagerOptions
Auto Trait Implementations§
impl Freeze for CacheManagerOptions
impl RefUnwindSafe for CacheManagerOptions
impl Send for CacheManagerOptions
impl Sync for CacheManagerOptions
impl Unpin for CacheManagerOptions
impl UnsafeUnpin for CacheManagerOptions
impl UnwindSafe for CacheManagerOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.