pub struct UntrackIndexedDbForStorageKey {
pub method: UntrackIndexedDbForStorageKeyMethod,
pub params: UntrackIndexedDbForStorageKeyParams,
}Expand description
Unregisters storage key from receiving notifications for IndexedDB. untrackIndexedDBForStorageKey
Fields§
§method: UntrackIndexedDbForStorageKeyMethod§params: UntrackIndexedDbForStorageKeyParamsImplementations§
Source§impl UntrackIndexedDbForStorageKey
impl UntrackIndexedDbForStorageKey
pub fn builder() -> UntrackIndexedDbForStorageKeyBuilder
Source§impl UntrackIndexedDbForStorageKey
impl UntrackIndexedDbForStorageKey
pub const IDENTIFIER: &'static str = "Storage.untrackIndexedDBForStorageKey"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for UntrackIndexedDbForStorageKey
impl Clone for UntrackIndexedDbForStorageKey
Source§fn clone(&self) -> UntrackIndexedDbForStorageKey
fn clone(&self) -> UntrackIndexedDbForStorageKey
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 UntrackIndexedDbForStorageKey
impl CommandResult for UntrackIndexedDbForStorageKey
type Result = UntrackIndexedDbForStorageKeyResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for UntrackIndexedDbForStorageKey
impl<'de> Deserialize<'de> for UntrackIndexedDbForStorageKey
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<UntrackIndexedDbForStorageKey> for BrowserProtocolCommands
impl From<UntrackIndexedDbForStorageKey> for BrowserProtocolCommands
Source§fn from(v: UntrackIndexedDbForStorageKey) -> Self
fn from(v: UntrackIndexedDbForStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<UntrackIndexedDbForStorageKey> for Command
impl From<UntrackIndexedDbForStorageKey> for Command
Source§fn from(v: UntrackIndexedDbForStorageKey) -> Self
fn from(v: UntrackIndexedDbForStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<UntrackIndexedDbForStorageKey> for StorageCommands
impl From<UntrackIndexedDbForStorageKey> for StorageCommands
Source§fn from(v: UntrackIndexedDbForStorageKey) -> Self
fn from(v: UntrackIndexedDbForStorageKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UntrackIndexedDbForStorageKey
impl PartialEq for UntrackIndexedDbForStorageKey
Source§fn eq(&self, other: &UntrackIndexedDbForStorageKey) -> bool
fn eq(&self, other: &UntrackIndexedDbForStorageKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for UntrackIndexedDbForStorageKey
impl TryFrom<BrowserProtocolCommands> for UntrackIndexedDbForStorageKey
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, <UntrackIndexedDbForStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <UntrackIndexedDbForStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<StorageCommands> for UntrackIndexedDbForStorageKey
impl TryFrom<StorageCommands> for UntrackIndexedDbForStorageKey
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, <UntrackIndexedDbForStorageKey as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <UntrackIndexedDbForStorageKey as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for UntrackIndexedDbForStorageKey
Auto Trait Implementations§
impl Freeze for UntrackIndexedDbForStorageKey
impl RefUnwindSafe for UntrackIndexedDbForStorageKey
impl Send for UntrackIndexedDbForStorageKey
impl Sync for UntrackIndexedDbForStorageKey
impl Unpin for UntrackIndexedDbForStorageKey
impl UnsafeUnpin for UntrackIndexedDbForStorageKey
impl UnwindSafe for UntrackIndexedDbForStorageKey
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