pub struct CacheModuleAsyncOptions {
pub imports: Vec<String>,
pub useExisting: Option<String>,
pub useClass: Option<String>,
pub useFactory: bool,
pub inject: Vec<String>,
pub extraProviders: Vec<String>,
pub isGlobal: Option<bool>,
pub options: Option<CacheOptions>,
}Fields§
§imports: Vec<String>§useExisting: Option<String>§useClass: Option<String>§useFactory: bool§inject: Vec<String>§extraProviders: Vec<String>§isGlobal: Option<bool>§options: Option<CacheOptions>Trait Implementations§
Source§impl Clone for CacheModuleAsyncOptions
impl Clone for CacheModuleAsyncOptions
Source§fn clone(&self) -> CacheModuleAsyncOptions
fn clone(&self) -> CacheModuleAsyncOptions
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 CacheModuleAsyncOptions
impl Debug for CacheModuleAsyncOptions
Source§impl Default for CacheModuleAsyncOptions
impl Default for CacheModuleAsyncOptions
Source§fn default() -> CacheModuleAsyncOptions
fn default() -> CacheModuleAsyncOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CacheModuleAsyncOptions
impl<'de> Deserialize<'de> for CacheModuleAsyncOptions
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 CacheModuleAsyncOptions
impl PartialEq for CacheModuleAsyncOptions
Source§fn eq(&self, other: &CacheModuleAsyncOptions) -> bool
fn eq(&self, other: &CacheModuleAsyncOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CacheModuleAsyncOptions
impl Serialize for CacheModuleAsyncOptions
impl Eq for CacheModuleAsyncOptions
impl StructuralPartialEq for CacheModuleAsyncOptions
Auto Trait Implementations§
impl Freeze for CacheModuleAsyncOptions
impl RefUnwindSafe for CacheModuleAsyncOptions
impl Send for CacheModuleAsyncOptions
impl Sync for CacheModuleAsyncOptions
impl Unpin for CacheModuleAsyncOptions
impl UnsafeUnpin for CacheModuleAsyncOptions
impl UnwindSafe for CacheModuleAsyncOptions
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.