pub struct RemoveStorageItemsParams {
pub id: String,
pub storage_area: StorageArea,
pub keys: Vec<String>,
}Expand description
Removes keys from extension storage in the given storageArea.
removeStorageItems
Fields§
§id: StringID of extension.
storage_area: StorageAreaStorageArea to remove data from.
keys: Vec<String>Keys to remove.
Implementations§
Source§impl RemoveStorageItemsParams
impl RemoveStorageItemsParams
pub const IDENTIFIER: &'static str = "Extensions.removeStorageItems"
Trait Implementations§
Source§impl Clone for RemoveStorageItemsParams
impl Clone for RemoveStorageItemsParams
Source§fn clone(&self) -> RemoveStorageItemsParams
fn clone(&self) -> RemoveStorageItemsParams
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 RemoveStorageItemsParams
impl Command for RemoveStorageItemsParams
Source§impl Debug for RemoveStorageItemsParams
impl Debug for RemoveStorageItemsParams
Source§impl<'de> Deserialize<'de> for RemoveStorageItemsParams
impl<'de> Deserialize<'de> for RemoveStorageItemsParams
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 Method for RemoveStorageItemsParams
impl Method for RemoveStorageItemsParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
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 PartialEq for RemoveStorageItemsParams
impl PartialEq for RemoveStorageItemsParams
Source§impl Serialize for RemoveStorageItemsParams
impl Serialize for RemoveStorageItemsParams
impl StructuralPartialEq for RemoveStorageItemsParams
Auto Trait Implementations§
impl Freeze for RemoveStorageItemsParams
impl RefUnwindSafe for RemoveStorageItemsParams
impl Send for RemoveStorageItemsParams
impl Sync for RemoveStorageItemsParams
impl Unpin for RemoveStorageItemsParams
impl UnwindSafe for RemoveStorageItemsParams
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