pub struct RemoveStorageItemsParams {
pub id: String,
pub storageArea: StorageArea,
pub keys: Vec<String>,
}Expand description
Removes ‘keys’ from extension storage in the given ‘storageArea’.
Fields§
§id: StringID of extension.
storageArea: StorageAreaStorageArea to remove data from.
keys: Vec<String>Keys to remove.
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 Default for RemoveStorageItemsParams
impl Default for RemoveStorageItemsParams
Source§fn default() -> RemoveStorageItemsParams
fn default() -> RemoveStorageItemsParams
Returns the “default value” for a type. Read more
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
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