pub struct CacheStorageContentUpdated {
pub method: CacheStorageContentUpdatedMethod,
pub params: CacheStorageContentUpdatedParams,
}Expand description
A cache’s contents have been modified. cacheStorageContentUpdated
Fields§
§method: CacheStorageContentUpdatedMethod§params: CacheStorageContentUpdatedParamsImplementations§
Source§impl CacheStorageContentUpdated
impl CacheStorageContentUpdated
pub const IDENTIFIER: &'static str = "Storage.cacheStorageContentUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CacheStorageContentUpdated
impl Clone for CacheStorageContentUpdated
Source§fn clone(&self) -> CacheStorageContentUpdated
fn clone(&self) -> CacheStorageContentUpdated
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 Debug for CacheStorageContentUpdated
impl Debug for CacheStorageContentUpdated
Source§impl<'de> Deserialize<'de> for CacheStorageContentUpdated
impl<'de> Deserialize<'de> for CacheStorageContentUpdated
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 From<CacheStorageContentUpdated> for BrowserProtocolEvents
impl From<CacheStorageContentUpdated> for BrowserProtocolEvents
Source§fn from(v: CacheStorageContentUpdated) -> Self
fn from(v: CacheStorageContentUpdated) -> Self
Converts to this type from the input type.
Source§impl From<CacheStorageContentUpdated> for Event
impl From<CacheStorageContentUpdated> for Event
Source§fn from(v: CacheStorageContentUpdated) -> Self
fn from(v: CacheStorageContentUpdated) -> Self
Converts to this type from the input type.
Source§impl From<CacheStorageContentUpdated> for StorageEvents
impl From<CacheStorageContentUpdated> for StorageEvents
Source§fn from(v: CacheStorageContentUpdated) -> Self
fn from(v: CacheStorageContentUpdated) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolEvents> for CacheStorageContentUpdated
impl TryFrom<BrowserProtocolEvents> for CacheStorageContentUpdated
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <CacheStorageContentUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <CacheStorageContentUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for CacheStorageContentUpdated
impl TryFrom<Event> for CacheStorageContentUpdated
Source§impl TryFrom<StorageEvents> for CacheStorageContentUpdated
impl TryFrom<StorageEvents> for CacheStorageContentUpdated
Source§type Error = StorageEvents
type Error = StorageEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: StorageEvents,
) -> Result<Self, <CacheStorageContentUpdated as TryFrom<StorageEvents>>::Error>
fn try_from( e: StorageEvents, ) -> Result<Self, <CacheStorageContentUpdated as TryFrom<StorageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for CacheStorageContentUpdated
Auto Trait Implementations§
impl Freeze for CacheStorageContentUpdated
impl RefUnwindSafe for CacheStorageContentUpdated
impl Send for CacheStorageContentUpdated
impl Sync for CacheStorageContentUpdated
impl Unpin for CacheStorageContentUpdated
impl UnsafeUnpin for CacheStorageContentUpdated
impl UnwindSafe for CacheStorageContentUpdated
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