pub struct GetStorageKey {
pub method: GetStorageKeyMethod,
pub params: GetStorageKeyParams,
}Expand description
Returns storage key for the given frame. If no frame ID is provided, the storage key of the target executing this command is returned. getStorageKey
Fields§
§method: GetStorageKeyMethod§params: GetStorageKeyParamsImplementations§
Source§impl GetStorageKey
impl GetStorageKey
pub fn builder() -> GetStorageKeyBuilder
Source§impl GetStorageKey
impl GetStorageKey
pub const IDENTIFIER: &'static str = "Storage.getStorageKey"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetStorageKey
impl Clone for GetStorageKey
Source§fn clone(&self) -> GetStorageKey
fn clone(&self) -> GetStorageKey
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 GetStorageKey
impl CommandResult for GetStorageKey
type Result = GetStorageKeyResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetStorageKey
impl Debug for GetStorageKey
Source§impl<'de> Deserialize<'de> for GetStorageKey
impl<'de> Deserialize<'de> for GetStorageKey
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<GetStorageKey> for BrowserProtocolCommands
impl From<GetStorageKey> for BrowserProtocolCommands
Source§fn from(v: GetStorageKey) -> Self
fn from(v: GetStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<GetStorageKey> for Command
impl From<GetStorageKey> for Command
Source§fn from(v: GetStorageKey) -> Self
fn from(v: GetStorageKey) -> Self
Converts to this type from the input type.
Source§impl From<GetStorageKey> for StorageCommands
impl From<GetStorageKey> for StorageCommands
Source§fn from(v: GetStorageKey) -> Self
fn from(v: GetStorageKey) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetStorageKey
impl PartialEq for GetStorageKey
Source§impl Serialize for GetStorageKey
impl Serialize for GetStorageKey
Source§impl TryFrom<BrowserProtocolCommands> for GetStorageKey
impl TryFrom<BrowserProtocolCommands> for GetStorageKey
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, <GetStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetStorageKey as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetStorageKey
impl TryFrom<Command> for GetStorageKey
Source§impl TryFrom<StorageCommands> for GetStorageKey
impl TryFrom<StorageCommands> for GetStorageKey
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, <GetStorageKey as TryFrom<StorageCommands>>::Error>
fn try_from( e: StorageCommands, ) -> Result<Self, <GetStorageKey as TryFrom<StorageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetStorageKey
Auto Trait Implementations§
impl Freeze for GetStorageKey
impl RefUnwindSafe for GetStorageKey
impl Send for GetStorageKey
impl Sync for GetStorageKey
impl Unpin for GetStorageKey
impl UnsafeUnpin for GetStorageKey
impl UnwindSafe for GetStorageKey
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