pub struct GetStorageKeyParams {
pub frame_id: Option<FrameId>,
}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§
§frame_id: Option<FrameId>Implementations§
Source§impl GetStorageKeyParams
impl GetStorageKeyParams
pub fn builder() -> GetStorageKeyParamsBuilder
Source§impl GetStorageKeyParams
impl GetStorageKeyParams
pub const IDENTIFIER: &'static str = "Storage.getStorageKey"
Trait Implementations§
Source§impl Clone for GetStorageKeyParams
impl Clone for GetStorageKeyParams
Source§fn clone(&self) -> GetStorageKeyParams
fn clone(&self) -> GetStorageKeyParams
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 Command for GetStorageKeyParams
impl Command for GetStorageKeyParams
Source§impl Debug for GetStorageKeyParams
impl Debug for GetStorageKeyParams
Source§impl Default for GetStorageKeyParams
impl Default for GetStorageKeyParams
Source§fn default() -> GetStorageKeyParams
fn default() -> GetStorageKeyParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetStorageKeyParams
impl<'de> Deserialize<'de> for GetStorageKeyParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetStorageKeyParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetStorageKeyParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Method for GetStorageKeyParams
impl Method for GetStorageKeyParams
Source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for GetStorageKeyParams
impl MethodType for GetStorageKeyParams
Source§impl PartialEq for GetStorageKeyParams
impl PartialEq for GetStorageKeyParams
Source§impl Serialize for GetStorageKeyParams
impl Serialize for GetStorageKeyParams
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GetStorageKeyParams
Auto Trait Implementations§
impl Freeze for GetStorageKeyParams
impl RefUnwindSafe for GetStorageKeyParams
impl Send for GetStorageKeyParams
impl Sync for GetStorageKeyParams
impl Unpin for GetStorageKeyParams
impl UnsafeUnpin for GetStorageKeyParams
impl UnwindSafe for GetStorageKeyParams
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