pub struct TrackCacheStorageForStorageKey {
pub method: TrackCacheStorageForStorageKeyMethod,
pub params: TrackCacheStorageForStorageKeyParams,
}Expand description
Registers storage key to be notified when an update occurs to its cache storage list. trackCacheStorageForStorageKey
Fields§
§method: TrackCacheStorageForStorageKeyMethod§params: TrackCacheStorageForStorageKeyParamsImplementations§
Source§impl TrackCacheStorageForStorageKey
impl TrackCacheStorageForStorageKey
pub fn builder() -> TrackCacheStorageForStorageKeyBuilder
Source§impl TrackCacheStorageForStorageKey
impl TrackCacheStorageForStorageKey
pub const IDENTIFIER: &'static str = "Storage.trackCacheStorageForStorageKey"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TrackCacheStorageForStorageKey
impl Clone for TrackCacheStorageForStorageKey
Source§fn clone(&self) -> TrackCacheStorageForStorageKey
fn clone(&self) -> TrackCacheStorageForStorageKey
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 TrackCacheStorageForStorageKey
impl CommandResult for TrackCacheStorageForStorageKey
type Result = TrackCacheStorageForStorageKeyResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for TrackCacheStorageForStorageKey
impl<'de> Deserialize<'de> for TrackCacheStorageForStorageKey
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<TrackCacheStorageForStorageKey> for BrowserProtocolCommands
impl From<TrackCacheStorageForStorageKey> for BrowserProtocolCommands
Source§fn from(v: TrackCacheStorageForStorageKey) -> Self
fn from(v: TrackCacheStorageForStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<TrackCacheStorageForStorageKey> for Command
impl From<TrackCacheStorageForStorageKey> for Command
Source§fn from(v: TrackCacheStorageForStorageKey) -> Self
fn from(v: TrackCacheStorageForStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<TrackCacheStorageForStorageKey> for StorageCommands
impl From<TrackCacheStorageForStorageKey> for StorageCommands
Source§fn from(v: TrackCacheStorageForStorageKey) -> Self
fn from(v: TrackCacheStorageForStorageKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TrackCacheStorageForStorageKey
impl PartialEq for TrackCacheStorageForStorageKey
Source§fn eq(&self, other: &TrackCacheStorageForStorageKey) -> bool
fn eq(&self, other: &TrackCacheStorageForStorageKey) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for TrackCacheStorageForStorageKey
impl TryFrom<BrowserProtocolCommands> for TrackCacheStorageForStorageKey
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, <TrackCacheStorageForStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <TrackCacheStorageForStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<StorageCommands> for TrackCacheStorageForStorageKey
impl TryFrom<StorageCommands> for TrackCacheStorageForStorageKey
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, <TrackCacheStorageForStorageKey as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <TrackCacheStorageForStorageKey as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for TrackCacheStorageForStorageKey
Auto Trait Implementations§
impl Freeze for TrackCacheStorageForStorageKey
impl RefUnwindSafe for TrackCacheStorageForStorageKey
impl Send for TrackCacheStorageForStorageKey
impl Sync for TrackCacheStorageForStorageKey
impl Unpin for TrackCacheStorageForStorageKey
impl UnsafeUnpin for TrackCacheStorageForStorageKey
impl UnwindSafe for TrackCacheStorageForStorageKey
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