pub struct IndexedDbContentUpdated {
pub method: IndexedDbContentUpdatedMethod,
pub params: IndexedDbContentUpdatedParams,
}Expand description
The origin’s IndexedDB object store has been modified. indexedDBContentUpdated
Fields§
§method: IndexedDbContentUpdatedMethod§params: IndexedDbContentUpdatedParamsImplementations§
Source§impl IndexedDbContentUpdated
impl IndexedDbContentUpdated
pub const IDENTIFIER: &'static str = "Storage.indexedDBContentUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for IndexedDbContentUpdated
impl Clone for IndexedDbContentUpdated
Source§fn clone(&self) -> IndexedDbContentUpdated
fn clone(&self) -> IndexedDbContentUpdated
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 IndexedDbContentUpdated
impl Debug for IndexedDbContentUpdated
Source§impl<'de> Deserialize<'de> for IndexedDbContentUpdated
impl<'de> Deserialize<'de> for IndexedDbContentUpdated
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<IndexedDbContentUpdated> for BrowserProtocolEvents
impl From<IndexedDbContentUpdated> for BrowserProtocolEvents
Source§fn from(v: IndexedDbContentUpdated) -> Self
fn from(v: IndexedDbContentUpdated) -> Self
Converts to this type from the input type.
Source§impl From<IndexedDbContentUpdated> for Event
impl From<IndexedDbContentUpdated> for Event
Source§fn from(v: IndexedDbContentUpdated) -> Self
fn from(v: IndexedDbContentUpdated) -> Self
Converts to this type from the input type.
Source§impl From<IndexedDbContentUpdated> for StorageEvents
impl From<IndexedDbContentUpdated> for StorageEvents
Source§fn from(v: IndexedDbContentUpdated) -> Self
fn from(v: IndexedDbContentUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IndexedDbContentUpdated
impl PartialEq for IndexedDbContentUpdated
Source§impl Serialize for IndexedDbContentUpdated
impl Serialize for IndexedDbContentUpdated
Source§impl TryFrom<BrowserProtocolEvents> for IndexedDbContentUpdated
impl TryFrom<BrowserProtocolEvents> for IndexedDbContentUpdated
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, <IndexedDbContentUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <IndexedDbContentUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for IndexedDbContentUpdated
impl TryFrom<Event> for IndexedDbContentUpdated
Source§impl TryFrom<StorageEvents> for IndexedDbContentUpdated
impl TryFrom<StorageEvents> for IndexedDbContentUpdated
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, <IndexedDbContentUpdated as TryFrom<StorageEvents>>::Error>
fn try_from( e: StorageEvents, ) -> Result<Self, <IndexedDbContentUpdated as TryFrom<StorageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for IndexedDbContentUpdated
Auto Trait Implementations§
impl Freeze for IndexedDbContentUpdated
impl RefUnwindSafe for IndexedDbContentUpdated
impl Send for IndexedDbContentUpdated
impl Sync for IndexedDbContentUpdated
impl Unpin for IndexedDbContentUpdated
impl UnsafeUnpin for IndexedDbContentUpdated
impl UnwindSafe for IndexedDbContentUpdated
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