pub struct Cache {
pub cacheId: CacheId,
pub securityOrigin: String,
pub storageKey: String,
pub storageBucket: Option<StorageBucket>,
pub cacheName: String,
}Expand description
Cache identifier.
Fields§
§cacheId: CacheIdAn opaque unique id of the cache.
securityOrigin: StringSecurity origin of the cache.
storageKey: StringStorage key of the cache.
storageBucket: Option<StorageBucket>Storage bucket of the cache.
cacheName: StringThe name of the cache.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Cache
impl<'de> Deserialize<'de> for Cache
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
Auto Trait Implementations§
impl Freeze for Cache
impl RefUnwindSafe for Cache
impl Send for Cache
impl Sync for Cache
impl Unpin for Cache
impl UnsafeUnpin for Cache
impl UnwindSafe for Cache
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