pub struct Cache {
pub cache_id: CacheId,
pub security_origin: String,
pub storage_key: String,
pub storage_bucket: Option<StorageBucket>,
pub cache_name: String,
}Expand description
Cache identifier. Cache
Fields§
§cache_id: CacheIdAn opaque unique id of the cache.
security_origin: StringSecurity origin of the cache.
storage_key: StringStorage key of the cache.
storage_bucket: Option<StorageBucket>Storage bucket of the cache.
cache_name: StringThe name of the cache.
Implementations§
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
impl StructuralPartialEq for Cache
Auto Trait Implementations§
impl Freeze for Cache
impl RefUnwindSafe for Cache
impl Send for Cache
impl Sync for Cache
impl Unpin 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