pub struct ClearDataForStorageKey {
pub method: ClearDataForStorageKeyMethod,
pub params: ClearDataForStorageKeyParams,
}Expand description
Clears storage for storage key. clearDataForStorageKey
Fields§
§method: ClearDataForStorageKeyMethod§params: ClearDataForStorageKeyParamsImplementations§
Source§impl ClearDataForStorageKey
impl ClearDataForStorageKey
pub fn builder() -> ClearDataForStorageKeyBuilder
Source§impl ClearDataForStorageKey
impl ClearDataForStorageKey
pub const IDENTIFIER: &'static str = "Storage.clearDataForStorageKey"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClearDataForStorageKey
impl Clone for ClearDataForStorageKey
Source§fn clone(&self) -> ClearDataForStorageKey
fn clone(&self) -> ClearDataForStorageKey
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 ClearDataForStorageKey
impl CommandResult for ClearDataForStorageKey
type Result = ClearDataForStorageKeyResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClearDataForStorageKey
impl Debug for ClearDataForStorageKey
Source§impl<'de> Deserialize<'de> for ClearDataForStorageKey
impl<'de> Deserialize<'de> for ClearDataForStorageKey
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<ClearDataForStorageKey> for BrowserProtocolCommands
impl From<ClearDataForStorageKey> for BrowserProtocolCommands
Source§fn from(v: ClearDataForStorageKey) -> Self
fn from(v: ClearDataForStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<ClearDataForStorageKey> for Command
impl From<ClearDataForStorageKey> for Command
Source§fn from(v: ClearDataForStorageKey) -> Self
fn from(v: ClearDataForStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<ClearDataForStorageKey> for StorageCommands
impl From<ClearDataForStorageKey> for StorageCommands
Source§fn from(v: ClearDataForStorageKey) -> Self
fn from(v: ClearDataForStorageKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClearDataForStorageKey
impl PartialEq for ClearDataForStorageKey
Source§impl Serialize for ClearDataForStorageKey
impl Serialize for ClearDataForStorageKey
Source§impl TryFrom<BrowserProtocolCommands> for ClearDataForStorageKey
impl TryFrom<BrowserProtocolCommands> for ClearDataForStorageKey
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, <ClearDataForStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClearDataForStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClearDataForStorageKey
impl TryFrom<Command> for ClearDataForStorageKey
Source§impl TryFrom<StorageCommands> for ClearDataForStorageKey
impl TryFrom<StorageCommands> for ClearDataForStorageKey
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, <ClearDataForStorageKey as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <ClearDataForStorageKey as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClearDataForStorageKey
Auto Trait Implementations§
impl Freeze for ClearDataForStorageKey
impl RefUnwindSafe for ClearDataForStorageKey
impl Send for ClearDataForStorageKey
impl Sync for ClearDataForStorageKey
impl Unpin for ClearDataForStorageKey
impl UnsafeUnpin for ClearDataForStorageKey
impl UnwindSafe for ClearDataForStorageKey
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