pub struct RemoveStorageItemsParams<'a> { /* private fields */ }Expand description
Removes ‘keys’ from extension storage in the given ‘storageArea’.
Implementations§
Source§impl<'a> RemoveStorageItemsParams<'a>
impl<'a> RemoveStorageItemsParams<'a>
Sourcepub fn builder(
id: impl Into<Cow<'a, str>>,
storage_area: impl Into<StorageArea>,
keys: Vec<Cow<'a, str>>,
) -> RemoveStorageItemsParamsBuilder<'a>
pub fn builder( id: impl Into<Cow<'a, str>>, storage_area: impl Into<StorageArea>, keys: Vec<Cow<'a, str>>, ) -> RemoveStorageItemsParamsBuilder<'a>
Creates a builder for this type with the required parameters:
id: ID of extension.storage_area: StorageArea to remove data from.keys: Keys to remove.
Sourcepub fn storage_area(&self) -> &StorageArea
pub fn storage_area(&self) -> &StorageArea
StorageArea to remove data from.
Trait Implementations§
Source§impl<'a> CdpCommand<'a> for RemoveStorageItemsParams<'a>
impl<'a> CdpCommand<'a> for RemoveStorageItemsParams<'a>
Source§impl<'a> Clone for RemoveStorageItemsParams<'a>
impl<'a> Clone for RemoveStorageItemsParams<'a>
Source§fn clone(&self) -> RemoveStorageItemsParams<'a>
fn clone(&self) -> RemoveStorageItemsParams<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for RemoveStorageItemsParams<'a>
impl<'a> Debug for RemoveStorageItemsParams<'a>
Source§impl<'a> Default for RemoveStorageItemsParams<'a>
impl<'a> Default for RemoveStorageItemsParams<'a>
Source§fn default() -> RemoveStorageItemsParams<'a>
fn default() -> RemoveStorageItemsParams<'a>
Returns the “default value” for a type. Read more
Source§impl<'de, 'a> Deserialize<'de> for RemoveStorageItemsParams<'a>
impl<'de, 'a> Deserialize<'de> for RemoveStorageItemsParams<'a>
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<'a> Freeze for RemoveStorageItemsParams<'a>
impl<'a> RefUnwindSafe for RemoveStorageItemsParams<'a>
impl<'a> Send for RemoveStorageItemsParams<'a>
impl<'a> Sync for RemoveStorageItemsParams<'a>
impl<'a> Unpin for RemoveStorageItemsParams<'a>
impl<'a> UnsafeUnpin for RemoveStorageItemsParams<'a>
impl<'a> UnwindSafe for RemoveStorageItemsParams<'a>
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