pub struct UntrackIndexedDbForOrigin {
pub method: UntrackIndexedDbForOriginMethod,
pub params: UntrackIndexedDbForOriginParams,
}Expand description
Unregisters origin from receiving notifications for IndexedDB. untrackIndexedDBForOrigin
Fields§
§method: UntrackIndexedDbForOriginMethod§params: UntrackIndexedDbForOriginParamsImplementations§
Source§impl UntrackIndexedDbForOrigin
impl UntrackIndexedDbForOrigin
pub const IDENTIFIER: &'static str = "Storage.untrackIndexedDBForOrigin"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for UntrackIndexedDbForOrigin
impl Clone for UntrackIndexedDbForOrigin
Source§fn clone(&self) -> UntrackIndexedDbForOrigin
fn clone(&self) -> UntrackIndexedDbForOrigin
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 UntrackIndexedDbForOrigin
impl CommandResult for UntrackIndexedDbForOrigin
type Result = UntrackIndexedDbForOriginResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for UntrackIndexedDbForOrigin
impl Debug for UntrackIndexedDbForOrigin
Source§impl<'de> Deserialize<'de> for UntrackIndexedDbForOrigin
impl<'de> Deserialize<'de> for UntrackIndexedDbForOrigin
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<UntrackIndexedDbForOrigin> for BrowserProtocolCommands
impl From<UntrackIndexedDbForOrigin> for BrowserProtocolCommands
Source§fn from(v: UntrackIndexedDbForOrigin) -> Self
fn from(v: UntrackIndexedDbForOrigin) -> Self
Converts to this type from the input type.
Source§impl From<UntrackIndexedDbForOrigin> for Command
impl From<UntrackIndexedDbForOrigin> for Command
Source§fn from(v: UntrackIndexedDbForOrigin) -> Self
fn from(v: UntrackIndexedDbForOrigin) -> Self
Converts to this type from the input type.
Source§impl From<UntrackIndexedDbForOrigin> for StorageCommands
impl From<UntrackIndexedDbForOrigin> for StorageCommands
Source§fn from(v: UntrackIndexedDbForOrigin) -> Self
fn from(v: UntrackIndexedDbForOrigin) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolCommands> for UntrackIndexedDbForOrigin
impl TryFrom<BrowserProtocolCommands> for UntrackIndexedDbForOrigin
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, <UntrackIndexedDbForOrigin as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <UntrackIndexedDbForOrigin as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for UntrackIndexedDbForOrigin
impl TryFrom<Command> for UntrackIndexedDbForOrigin
Source§impl TryFrom<StorageCommands> for UntrackIndexedDbForOrigin
impl TryFrom<StorageCommands> for UntrackIndexedDbForOrigin
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, <UntrackIndexedDbForOrigin as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <UntrackIndexedDbForOrigin as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for UntrackIndexedDbForOrigin
Auto Trait Implementations§
impl Freeze for UntrackIndexedDbForOrigin
impl RefUnwindSafe for UntrackIndexedDbForOrigin
impl Send for UntrackIndexedDbForOrigin
impl Sync for UntrackIndexedDbForOrigin
impl Unpin for UntrackIndexedDbForOrigin
impl UnsafeUnpin for UntrackIndexedDbForOrigin
impl UnwindSafe for UntrackIndexedDbForOrigin
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