pub struct CacheStorageListUpdatedParams {
pub origin: String,
pub storage_key: String,
pub bucket_id: String,
}Expand description
A cache has been added/deleted. cacheStorageListUpdated
Fields§
§origin: StringOrigin to update.
storage_key: StringStorage key to update.
bucket_id: StringStorage bucket to update.
Trait Implementations§
Source§impl Clone for CacheStorageListUpdatedParams
impl Clone for CacheStorageListUpdatedParams
Source§fn clone(&self) -> CacheStorageListUpdatedParams
fn clone(&self) -> CacheStorageListUpdatedParams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for CacheStorageListUpdatedParams
impl<'de> Deserialize<'de> for CacheStorageListUpdatedParams
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 CacheStorageListUpdatedParams
impl PartialEq for CacheStorageListUpdatedParams
Source§fn eq(&self, other: &CacheStorageListUpdatedParams) -> bool
fn eq(&self, other: &CacheStorageListUpdatedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CacheStorageListUpdatedParams
Auto Trait Implementations§
impl Freeze for CacheStorageListUpdatedParams
impl RefUnwindSafe for CacheStorageListUpdatedParams
impl Send for CacheStorageListUpdatedParams
impl Sync for CacheStorageListUpdatedParams
impl Unpin for CacheStorageListUpdatedParams
impl UnsafeUnpin for CacheStorageListUpdatedParams
impl UnwindSafe for CacheStorageListUpdatedParams
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