pub struct CacheStorageListUpdated {
pub method: CacheStorageListUpdatedMethod,
pub params: CacheStorageListUpdatedParams,
}Expand description
A cache has been added/deleted. cacheStorageListUpdated
Fields§
§method: CacheStorageListUpdatedMethod§params: CacheStorageListUpdatedParamsImplementations§
Source§impl CacheStorageListUpdated
impl CacheStorageListUpdated
pub const IDENTIFIER: &'static str = "Storage.cacheStorageListUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CacheStorageListUpdated
impl Clone for CacheStorageListUpdated
Source§fn clone(&self) -> CacheStorageListUpdated
fn clone(&self) -> CacheStorageListUpdated
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 CacheStorageListUpdated
impl Debug for CacheStorageListUpdated
Source§impl<'de> Deserialize<'de> for CacheStorageListUpdated
impl<'de> Deserialize<'de> for CacheStorageListUpdated
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<CacheStorageListUpdated> for BrowserProtocolEvents
impl From<CacheStorageListUpdated> for BrowserProtocolEvents
Source§fn from(v: CacheStorageListUpdated) -> Self
fn from(v: CacheStorageListUpdated) -> Self
Converts to this type from the input type.
Source§impl From<CacheStorageListUpdated> for Event
impl From<CacheStorageListUpdated> for Event
Source§fn from(v: CacheStorageListUpdated) -> Self
fn from(v: CacheStorageListUpdated) -> Self
Converts to this type from the input type.
Source§impl From<CacheStorageListUpdated> for StorageEvents
impl From<CacheStorageListUpdated> for StorageEvents
Source§fn from(v: CacheStorageListUpdated) -> Self
fn from(v: CacheStorageListUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CacheStorageListUpdated
impl PartialEq for CacheStorageListUpdated
Source§impl Serialize for CacheStorageListUpdated
impl Serialize for CacheStorageListUpdated
Source§impl TryFrom<BrowserProtocolEvents> for CacheStorageListUpdated
impl TryFrom<BrowserProtocolEvents> for CacheStorageListUpdated
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, <CacheStorageListUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <CacheStorageListUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for CacheStorageListUpdated
impl TryFrom<Event> for CacheStorageListUpdated
Source§impl TryFrom<StorageEvents> for CacheStorageListUpdated
impl TryFrom<StorageEvents> for CacheStorageListUpdated
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, <CacheStorageListUpdated as TryFrom<StorageEvents>>::Error>
fn try_from( e: StorageEvents, ) -> Result<Self, <CacheStorageListUpdated as TryFrom<StorageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for CacheStorageListUpdated
Auto Trait Implementations§
impl Freeze for CacheStorageListUpdated
impl RefUnwindSafe for CacheStorageListUpdated
impl Send for CacheStorageListUpdated
impl Sync for CacheStorageListUpdated
impl Unpin for CacheStorageListUpdated
impl UnsafeUnpin for CacheStorageListUpdated
impl UnwindSafe for CacheStorageListUpdated
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