pub struct EventDomStorageItemAdded {
pub storage_id: StorageId,
pub key: String,
pub new_value: String,
}Fields
storage_id: StorageIdkey: Stringnew_value: StringImplementations
sourceimpl EventDomStorageItemAdded
impl EventDomStorageItemAdded
pub const IDENTIFIER: &'static str
Trait Implementations
sourceimpl Clone for EventDomStorageItemAdded
impl Clone for EventDomStorageItemAdded
sourcefn clone(&self) -> EventDomStorageItemAdded
fn clone(&self) -> EventDomStorageItemAdded
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 more
sourceimpl Debug for EventDomStorageItemAdded
impl Debug for EventDomStorageItemAdded
sourceimpl<'de> Deserialize<'de> for EventDomStorageItemAdded
impl<'de> Deserialize<'de> for EventDomStorageItemAdded
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<EventDomStorageItemAdded, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<EventDomStorageItemAdded, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<EventDomStorageItemAdded> for CdpEvent
impl From<EventDomStorageItemAdded> for CdpEvent
sourcefn from(el: EventDomStorageItemAdded) -> CdpEvent
fn from(el: EventDomStorageItemAdded) -> CdpEvent
Converts to this type from the input type.
sourceimpl IntoEventKind for EventDomStorageItemAdded
impl IntoEventKind for EventDomStorageItemAdded
sourcefn event_kind() -> EventKind where
EventDomStorageItemAdded: 'static,
EventDomStorageItemAdded: Sized,
fn event_kind() -> EventKind where
EventDomStorageItemAdded: 'static,
EventDomStorageItemAdded: Sized,
What kind of event this type is
sourceimpl Method for EventDomStorageItemAdded
impl Method for EventDomStorageItemAdded
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 MethodType for EventDomStorageItemAdded
impl MethodType for EventDomStorageItemAdded
sourceimpl PartialEq<EventDomStorageItemAdded> for EventDomStorageItemAdded
impl PartialEq<EventDomStorageItemAdded> for EventDomStorageItemAdded
sourcefn eq(&self, other: &EventDomStorageItemAdded) -> bool
fn eq(&self, other: &EventDomStorageItemAdded) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &EventDomStorageItemAdded) -> bool
fn ne(&self, other: &EventDomStorageItemAdded) -> bool
This method tests for !=.
sourceimpl Serialize for EventDomStorageItemAdded
impl Serialize for EventDomStorageItemAdded
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 EventDomStorageItemAdded
impl TryFrom<CdpEvent> for EventDomStorageItemAdded
impl StructuralPartialEq for EventDomStorageItemAdded
Auto Trait Implementations
impl RefUnwindSafe for EventDomStorageItemAdded
impl Send for EventDomStorageItemAdded
impl Sync for EventDomStorageItemAdded
impl Unpin for EventDomStorageItemAdded
impl UnwindSafe for EventDomStorageItemAdded
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more