pub struct GetStorageItemsParams {
pub id: String,
pub storage_area: StorageArea,
pub keys: Option<Vec<String>>,
}Expand description
Gets data from extension storage in the given storageArea. If keys is
specified, these are used to filter the result.
getStorageItems
Fields§
§id: StringID of extension.
storage_area: StorageAreaStorageArea to retrieve data from.
keys: Option<Vec<String>>Keys to retrieve.
Implementations§
Trait Implementations§
Source§impl Clone for GetStorageItemsParams
impl Clone for GetStorageItemsParams
Source§fn clone(&self) -> GetStorageItemsParams
fn clone(&self) -> GetStorageItemsParams
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 GetStorageItemsParams
impl Debug for GetStorageItemsParams
Source§impl<'de> Deserialize<'de> for GetStorageItemsParams
impl<'de> Deserialize<'de> for GetStorageItemsParams
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 GetStorageItemsParams
impl PartialEq for GetStorageItemsParams
Source§impl Serialize for GetStorageItemsParams
impl Serialize for GetStorageItemsParams
impl StructuralPartialEq for GetStorageItemsParams
Auto Trait Implementations§
impl Freeze for GetStorageItemsParams
impl RefUnwindSafe for GetStorageItemsParams
impl Send for GetStorageItemsParams
impl Sync for GetStorageItemsParams
impl Unpin for GetStorageItemsParams
impl UnsafeUnpin for GetStorageItemsParams
impl UnwindSafe for GetStorageItemsParams
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