pub struct GetStorageItems {
pub method: GetStorageItemsMethod,
pub params: GetStorageItemsParams,
}Expand description
Gets data from extension storage in the given storageArea. If keys is
specified, these are used to filter the result.
getStorageItems
Fields§
§method: GetStorageItemsMethod§params: GetStorageItemsParamsImplementations§
Source§impl GetStorageItems
impl GetStorageItems
pub fn builder() -> GetStorageItemsBuilder
Source§impl GetStorageItems
impl GetStorageItems
pub const IDENTIFIER: &'static str = "Extensions.getStorageItems"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetStorageItems
impl Clone for GetStorageItems
Source§fn clone(&self) -> GetStorageItems
fn clone(&self) -> GetStorageItems
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 CommandResult for GetStorageItems
impl CommandResult for GetStorageItems
type Result = GetStorageItemsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetStorageItems
impl Debug for GetStorageItems
Source§impl<'de> Deserialize<'de> for GetStorageItems
impl<'de> Deserialize<'de> for GetStorageItems
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 From<GetStorageItems> for BrowserProtocolCommands
impl From<GetStorageItems> for BrowserProtocolCommands
Source§fn from(v: GetStorageItems) -> Self
fn from(v: GetStorageItems) -> Self
Converts to this type from the input type.
Source§impl From<GetStorageItems> for Command
impl From<GetStorageItems> for Command
Source§fn from(v: GetStorageItems) -> Self
fn from(v: GetStorageItems) -> Self
Converts to this type from the input type.
Source§impl From<GetStorageItems> for ExtensionsCommands
impl From<GetStorageItems> for ExtensionsCommands
Source§fn from(v: GetStorageItems) -> Self
fn from(v: GetStorageItems) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetStorageItems
impl PartialEq for GetStorageItems
Source§impl Serialize for GetStorageItems
impl Serialize for GetStorageItems
Source§impl TryFrom<BrowserProtocolCommands> for GetStorageItems
impl TryFrom<BrowserProtocolCommands> for GetStorageItems
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetStorageItems as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetStorageItems as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetStorageItems
impl TryFrom<Command> for GetStorageItems
Source§impl TryFrom<ExtensionsCommands> for GetStorageItems
impl TryFrom<ExtensionsCommands> for GetStorageItems
Source§type Error = ExtensionsCommands
type Error = ExtensionsCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: ExtensionsCommands,
) -> Result<Self, <GetStorageItems as TryFrom<ExtensionsCommands>>::Error>
fn try_from( e: ExtensionsCommands, ) -> Result<Self, <GetStorageItems as TryFrom<ExtensionsCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetStorageItems
Auto Trait Implementations§
impl Freeze for GetStorageItems
impl RefUnwindSafe for GetStorageItems
impl Send for GetStorageItems
impl Sync for GetStorageItems
impl Unpin for GetStorageItems
impl UnsafeUnpin for GetStorageItems
impl UnwindSafe for GetStorageItems
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