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