pub struct EventIndexedDbListUpdated {
pub origin: String,
}
Expand description
The origin’s IndexedDB database list has been modified. indexedDBListUpdated
Fields
origin: String
Origin to update.
Implementations
sourceimpl EventIndexedDbListUpdated
impl EventIndexedDbListUpdated
pub const IDENTIFIER: &'static str = "Storage.indexedDBListUpdated"
Trait Implementations
sourceimpl Clone for EventIndexedDbListUpdated
impl Clone for EventIndexedDbListUpdated
sourcefn clone(&self) -> EventIndexedDbListUpdated
fn clone(&self) -> EventIndexedDbListUpdated
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 EventIndexedDbListUpdated
impl Debug for EventIndexedDbListUpdated
sourceimpl<'de> Deserialize<'de> for EventIndexedDbListUpdated
impl<'de> Deserialize<'de> for EventIndexedDbListUpdated
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<EventIndexedDbListUpdated, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<EventIndexedDbListUpdated, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<EventIndexedDbListUpdated> for CdpEvent
impl From<EventIndexedDbListUpdated> for CdpEvent
sourcefn from(el: EventIndexedDbListUpdated) -> CdpEvent
fn from(el: EventIndexedDbListUpdated) -> CdpEvent
Converts to this type from the input type.
sourceimpl IntoEventKind for EventIndexedDbListUpdated
impl IntoEventKind for EventIndexedDbListUpdated
sourcefn event_kind() -> EventKindwhere
EventIndexedDbListUpdated: 'static + Sized,
fn event_kind() -> EventKindwhere
EventIndexedDbListUpdated: 'static + Sized,
What kind of event this type is
sourceimpl Method for EventIndexedDbListUpdated
impl Method for EventIndexedDbListUpdated
sourcefn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNode
sourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
sourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
sourceimpl PartialEq<EventIndexedDbListUpdated> for EventIndexedDbListUpdated
impl PartialEq<EventIndexedDbListUpdated> for EventIndexedDbListUpdated
sourcefn eq(&self, other: &EventIndexedDbListUpdated) -> bool
fn eq(&self, other: &EventIndexedDbListUpdated) -> bool
sourceimpl Serialize for EventIndexedDbListUpdated
impl Serialize for EventIndexedDbListUpdated
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl TryFrom<CdpEvent> for EventIndexedDbListUpdated
impl TryFrom<CdpEvent> for EventIndexedDbListUpdated
impl StructuralPartialEq for EventIndexedDbListUpdated
Auto Trait Implementations
impl RefUnwindSafe for EventIndexedDbListUpdated
impl Send for EventIndexedDbListUpdated
impl Sync for EventIndexedDbListUpdated
impl Unpin for EventIndexedDbListUpdated
impl UnwindSafe for EventIndexedDbListUpdated
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