pub struct CacheStorageContentUpdatedParams {
pub origin: String,
pub storage_key: String,
pub bucket_id: String,
pub cache_name: String,
}Expand description
A cache’s contents have been modified. cacheStorageContentUpdated
Fields§
§origin: StringOrigin to update.
storage_key: StringStorage key to update.
bucket_id: StringStorage bucket to update.
cache_name: StringName of cache in origin.
Trait Implementations§
Source§impl Clone for CacheStorageContentUpdatedParams
impl Clone for CacheStorageContentUpdatedParams
Source§fn clone(&self) -> CacheStorageContentUpdatedParams
fn clone(&self) -> CacheStorageContentUpdatedParams
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 CacheStorageContentUpdatedParams
impl<'de> Deserialize<'de> for CacheStorageContentUpdatedParams
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 CacheStorageContentUpdatedParams
impl PartialEq for CacheStorageContentUpdatedParams
Source§fn eq(&self, other: &CacheStorageContentUpdatedParams) -> bool
fn eq(&self, other: &CacheStorageContentUpdatedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CacheStorageContentUpdatedParams
Auto Trait Implementations§
impl Freeze for CacheStorageContentUpdatedParams
impl RefUnwindSafe for CacheStorageContentUpdatedParams
impl Send for CacheStorageContentUpdatedParams
impl Sync for CacheStorageContentUpdatedParams
impl Unpin for CacheStorageContentUpdatedParams
impl UnsafeUnpin for CacheStorageContentUpdatedParams
impl UnwindSafe for CacheStorageContentUpdatedParams
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