pub struct TrackIndexedDbForOrigin {
pub method: TrackIndexedDbForOriginMethod,
pub params: TrackIndexedDbForOriginParams,
}Expand description
Registers origin to be notified when an update occurs to its IndexedDB. trackIndexedDBForOrigin
Fields§
§method: TrackIndexedDbForOriginMethod§params: TrackIndexedDbForOriginParamsImplementations§
Source§impl TrackIndexedDbForOrigin
impl TrackIndexedDbForOrigin
pub const IDENTIFIER: &'static str = "Storage.trackIndexedDBForOrigin"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TrackIndexedDbForOrigin
impl Clone for TrackIndexedDbForOrigin
Source§fn clone(&self) -> TrackIndexedDbForOrigin
fn clone(&self) -> TrackIndexedDbForOrigin
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 TrackIndexedDbForOrigin
impl CommandResult for TrackIndexedDbForOrigin
type Result = TrackIndexedDbForOriginResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for TrackIndexedDbForOrigin
impl Debug for TrackIndexedDbForOrigin
Source§impl<'de> Deserialize<'de> for TrackIndexedDbForOrigin
impl<'de> Deserialize<'de> for TrackIndexedDbForOrigin
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<TrackIndexedDbForOrigin> for BrowserProtocolCommands
impl From<TrackIndexedDbForOrigin> for BrowserProtocolCommands
Source§fn from(v: TrackIndexedDbForOrigin) -> Self
fn from(v: TrackIndexedDbForOrigin) -> Self
Converts to this type from the input type.
Source§impl From<TrackIndexedDbForOrigin> for Command
impl From<TrackIndexedDbForOrigin> for Command
Source§fn from(v: TrackIndexedDbForOrigin) -> Self
fn from(v: TrackIndexedDbForOrigin) -> Self
Converts to this type from the input type.
Source§impl From<TrackIndexedDbForOrigin> for StorageCommands
impl From<TrackIndexedDbForOrigin> for StorageCommands
Source§fn from(v: TrackIndexedDbForOrigin) -> Self
fn from(v: TrackIndexedDbForOrigin) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TrackIndexedDbForOrigin
impl PartialEq for TrackIndexedDbForOrigin
Source§impl Serialize for TrackIndexedDbForOrigin
impl Serialize for TrackIndexedDbForOrigin
Source§impl TryFrom<BrowserProtocolCommands> for TrackIndexedDbForOrigin
impl TryFrom<BrowserProtocolCommands> for TrackIndexedDbForOrigin
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, <TrackIndexedDbForOrigin as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <TrackIndexedDbForOrigin as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for TrackIndexedDbForOrigin
impl TryFrom<Command> for TrackIndexedDbForOrigin
Source§impl TryFrom<StorageCommands> for TrackIndexedDbForOrigin
impl TryFrom<StorageCommands> for TrackIndexedDbForOrigin
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, <TrackIndexedDbForOrigin as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <TrackIndexedDbForOrigin as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for TrackIndexedDbForOrigin
Auto Trait Implementations§
impl Freeze for TrackIndexedDbForOrigin
impl RefUnwindSafe for TrackIndexedDbForOrigin
impl Send for TrackIndexedDbForOrigin
impl Sync for TrackIndexedDbForOrigin
impl Unpin for TrackIndexedDbForOrigin
impl UnsafeUnpin for TrackIndexedDbForOrigin
impl UnwindSafe for TrackIndexedDbForOrigin
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