pub struct DomStorageItemUpdated {
pub method: DomStorageItemUpdatedMethod,
pub params: DomStorageItemUpdatedParams,
}Fields§
§method: DomStorageItemUpdatedMethod§params: DomStorageItemUpdatedParamsImplementations§
Source§impl DomStorageItemUpdated
impl DomStorageItemUpdated
pub const IDENTIFIER: &'static str = "DOMStorage.domStorageItemUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DomStorageItemUpdated
impl Clone for DomStorageItemUpdated
Source§fn clone(&self) -> DomStorageItemUpdated
fn clone(&self) -> DomStorageItemUpdated
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 DomStorageItemUpdated
impl Debug for DomStorageItemUpdated
Source§impl<'de> Deserialize<'de> for DomStorageItemUpdated
impl<'de> Deserialize<'de> for DomStorageItemUpdated
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<DomStorageItemUpdated> for BrowserProtocolEvents
impl From<DomStorageItemUpdated> for BrowserProtocolEvents
Source§fn from(v: DomStorageItemUpdated) -> Self
fn from(v: DomStorageItemUpdated) -> Self
Converts to this type from the input type.
Source§impl From<DomStorageItemUpdated> for DomStorageEvents
impl From<DomStorageItemUpdated> for DomStorageEvents
Source§fn from(v: DomStorageItemUpdated) -> Self
fn from(v: DomStorageItemUpdated) -> Self
Converts to this type from the input type.
Source§impl From<DomStorageItemUpdated> for Event
impl From<DomStorageItemUpdated> for Event
Source§fn from(v: DomStorageItemUpdated) -> Self
fn from(v: DomStorageItemUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DomStorageItemUpdated
impl PartialEq for DomStorageItemUpdated
Source§impl Serialize for DomStorageItemUpdated
impl Serialize for DomStorageItemUpdated
Source§impl TryFrom<BrowserProtocolEvents> for DomStorageItemUpdated
impl TryFrom<BrowserProtocolEvents> for DomStorageItemUpdated
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, <DomStorageItemUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <DomStorageItemUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<DomStorageEvents> for DomStorageItemUpdated
impl TryFrom<DomStorageEvents> for DomStorageItemUpdated
Source§type Error = DomStorageEvents
type Error = DomStorageEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomStorageEvents,
) -> Result<Self, <DomStorageItemUpdated as TryFrom<DomStorageEvents>>::Error>
fn try_from( e: DomStorageEvents, ) -> Result<Self, <DomStorageItemUpdated as TryFrom<DomStorageEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for DomStorageItemUpdated
impl TryFrom<Event> for DomStorageItemUpdated
impl StructuralPartialEq for DomStorageItemUpdated
Auto Trait Implementations§
impl Freeze for DomStorageItemUpdated
impl RefUnwindSafe for DomStorageItemUpdated
impl Send for DomStorageItemUpdated
impl Sync for DomStorageItemUpdated
impl Unpin for DomStorageItemUpdated
impl UnsafeUnpin for DomStorageItemUpdated
impl UnwindSafe for DomStorageItemUpdated
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