pub struct SetStorageItems {
pub method: SetStorageItemsMethod,
pub params: SetStorageItemsParams,
}Expand description
Sets values in extension storage in the given storageArea. The provided values
will be merged with existing values in the storage area.
setStorageItems
Fields§
§method: SetStorageItemsMethod§params: SetStorageItemsParamsImplementations§
Source§impl SetStorageItems
impl SetStorageItems
pub fn builder() -> SetStorageItemsBuilder
Source§impl SetStorageItems
impl SetStorageItems
pub const IDENTIFIER: &'static str = "Extensions.setStorageItems"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetStorageItems
impl Clone for SetStorageItems
Source§fn clone(&self) -> SetStorageItems
fn clone(&self) -> SetStorageItems
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 SetStorageItems
impl CommandResult for SetStorageItems
type Result = SetStorageItemsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetStorageItems
impl Debug for SetStorageItems
Source§impl<'de> Deserialize<'de> for SetStorageItems
impl<'de> Deserialize<'de> for SetStorageItems
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<SetStorageItems> for BrowserProtocolCommands
impl From<SetStorageItems> for BrowserProtocolCommands
Source§fn from(v: SetStorageItems) -> Self
fn from(v: SetStorageItems) -> Self
Converts to this type from the input type.
Source§impl From<SetStorageItems> for Command
impl From<SetStorageItems> for Command
Source§fn from(v: SetStorageItems) -> Self
fn from(v: SetStorageItems) -> Self
Converts to this type from the input type.
Source§impl From<SetStorageItems> for ExtensionsCommands
impl From<SetStorageItems> for ExtensionsCommands
Source§fn from(v: SetStorageItems) -> Self
fn from(v: SetStorageItems) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetStorageItems
impl PartialEq for SetStorageItems
Source§impl Serialize for SetStorageItems
impl Serialize for SetStorageItems
Source§impl TryFrom<BrowserProtocolCommands> for SetStorageItems
impl TryFrom<BrowserProtocolCommands> for SetStorageItems
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, <SetStorageItems as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetStorageItems as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetStorageItems
impl TryFrom<Command> for SetStorageItems
Source§impl TryFrom<ExtensionsCommands> for SetStorageItems
impl TryFrom<ExtensionsCommands> for SetStorageItems
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, <SetStorageItems as TryFrom<ExtensionsCommands>>::Error>
fn try_from( e: ExtensionsCommands, ) -> Result<Self, <SetStorageItems as TryFrom<ExtensionsCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetStorageItems
Auto Trait Implementations§
impl Freeze for SetStorageItems
impl RefUnwindSafe for SetStorageItems
impl Send for SetStorageItems
impl Sync for SetStorageItems
impl Unpin for SetStorageItems
impl UnsafeUnpin for SetStorageItems
impl UnwindSafe for SetStorageItems
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