pub struct TrackIndexedDbForStorageKey {
pub method: TrackIndexedDbForStorageKeyMethod,
pub params: TrackIndexedDbForStorageKeyParams,
}Expand description
Registers storage key to be notified when an update occurs to its IndexedDB. trackIndexedDBForStorageKey
Fields§
§method: TrackIndexedDbForStorageKeyMethod§params: TrackIndexedDbForStorageKeyParamsImplementations§
Source§impl TrackIndexedDbForStorageKey
impl TrackIndexedDbForStorageKey
pub const IDENTIFIER: &'static str = "Storage.trackIndexedDBForStorageKey"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TrackIndexedDbForStorageKey
impl Clone for TrackIndexedDbForStorageKey
Source§fn clone(&self) -> TrackIndexedDbForStorageKey
fn clone(&self) -> TrackIndexedDbForStorageKey
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 CommandResult for TrackIndexedDbForStorageKey
impl CommandResult for TrackIndexedDbForStorageKey
type Result = TrackIndexedDbForStorageKeyResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for TrackIndexedDbForStorageKey
impl Debug for TrackIndexedDbForStorageKey
Source§impl<'de> Deserialize<'de> for TrackIndexedDbForStorageKey
impl<'de> Deserialize<'de> for TrackIndexedDbForStorageKey
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<TrackIndexedDbForStorageKey> for BrowserProtocolCommands
impl From<TrackIndexedDbForStorageKey> for BrowserProtocolCommands
Source§fn from(v: TrackIndexedDbForStorageKey) -> Self
fn from(v: TrackIndexedDbForStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<TrackIndexedDbForStorageKey> for Command
impl From<TrackIndexedDbForStorageKey> for Command
Source§fn from(v: TrackIndexedDbForStorageKey) -> Self
fn from(v: TrackIndexedDbForStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<TrackIndexedDbForStorageKey> for StorageCommands
impl From<TrackIndexedDbForStorageKey> for StorageCommands
Source§fn from(v: TrackIndexedDbForStorageKey) -> Self
fn from(v: TrackIndexedDbForStorageKey) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolCommands> for TrackIndexedDbForStorageKey
impl TryFrom<BrowserProtocolCommands> for TrackIndexedDbForStorageKey
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <TrackIndexedDbForStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <TrackIndexedDbForStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for TrackIndexedDbForStorageKey
impl TryFrom<Command> for TrackIndexedDbForStorageKey
Source§impl TryFrom<StorageCommands> for TrackIndexedDbForStorageKey
impl TryFrom<StorageCommands> for TrackIndexedDbForStorageKey
Source§type Error = StorageCommands
type Error = StorageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: StorageCommands,
) -> Result<Self, <TrackIndexedDbForStorageKey as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <TrackIndexedDbForStorageKey as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for TrackIndexedDbForStorageKey
Auto Trait Implementations§
impl Freeze for TrackIndexedDbForStorageKey
impl RefUnwindSafe for TrackIndexedDbForStorageKey
impl Send for TrackIndexedDbForStorageKey
impl Sync for TrackIndexedDbForStorageKey
impl Unpin for TrackIndexedDbForStorageKey
impl UnsafeUnpin for TrackIndexedDbForStorageKey
impl UnwindSafe for TrackIndexedDbForStorageKey
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