pub struct GetStorageItemsParams {
pub id: String,
pub storageArea: 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.
Fields§
§id: StringID of extension.
storageArea: StorageAreaStorageArea to retrieve data from.
keys: Option<Vec<String>>Keys to retrieve.
Implementations§
Trait Implementations§
Source§impl CdpCommand for GetStorageItemsParams
impl CdpCommand for GetStorageItemsParams
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 Default for GetStorageItemsParams
impl Default for GetStorageItemsParams
Source§fn default() -> GetStorageItemsParams
fn default() -> GetStorageItemsParams
Returns the “default value” for a type. Read more
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
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