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§
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 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 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 UnsafeUnpin 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