pub struct EventCacheStorageListUpdated {
pub origin: String,
}Expand description
A cache has been added/deleted. cacheStorageListUpdated
Fields
origin: StringOrigin to update.
Implementations
sourceimpl EventCacheStorageListUpdated
impl EventCacheStorageListUpdated
pub const IDENTIFIER: &'static str = "Storage.cacheStorageListUpdated"
Trait Implementations
sourceimpl Clone for EventCacheStorageListUpdated
impl Clone for EventCacheStorageListUpdated
sourcefn clone(&self) -> EventCacheStorageListUpdated
fn clone(&self) -> EventCacheStorageListUpdated
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for EventCacheStorageListUpdated
impl Debug for EventCacheStorageListUpdated
sourceimpl<'de> Deserialize<'de> for EventCacheStorageListUpdated
impl<'de> Deserialize<'de> for EventCacheStorageListUpdated
sourcefn 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
sourceimpl From<EventCacheStorageListUpdated> for CdpEvent
impl From<EventCacheStorageListUpdated> for CdpEvent
sourcefn from(el: EventCacheStorageListUpdated) -> CdpEvent
fn from(el: EventCacheStorageListUpdated) -> CdpEvent
Converts to this type from the input type.
sourceimpl IntoEventKind for EventCacheStorageListUpdated
impl IntoEventKind for EventCacheStorageListUpdated
sourcefn event_kind() -> EventKindwhere
Self: Sized + 'static,
fn event_kind() -> EventKindwhere
Self: Sized + 'static,
What kind of event this type is
sourceimpl Method for EventCacheStorageListUpdated
impl Method for EventCacheStorageListUpdated
sourcefn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodesourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesourceimpl PartialEq<EventCacheStorageListUpdated> for EventCacheStorageListUpdated
impl PartialEq<EventCacheStorageListUpdated> for EventCacheStorageListUpdated
sourcefn eq(&self, other: &EventCacheStorageListUpdated) -> bool
fn eq(&self, other: &EventCacheStorageListUpdated) -> bool
impl StructuralPartialEq for EventCacheStorageListUpdated
Auto Trait Implementations
impl RefUnwindSafe for EventCacheStorageListUpdated
impl Send for EventCacheStorageListUpdated
impl Sync for EventCacheStorageListUpdated
impl Unpin for EventCacheStorageListUpdated
impl UnwindSafe for EventCacheStorageListUpdated
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more